dictionary to object bug fix

This commit is contained in:
Cal Corum 2025-05-29 21:54:46 -05:00
parent e366564bef
commit e9c9a3f392

View File

@ -501,7 +501,7 @@ class Gameplay(commands.Cog):
this_event = e_query['events'][0]
r_query = await db_get(
'gauntletruns',
params=[('team_id', human_team['id']), ('gauntlet_id', this_event['id']), ('is_active', True)]
params=[('team_id', human_team.id), ('gauntlet_id', this_event['id']), ('is_active', True)]
)
if r_query['count'] == 0: