From f8716c69cb8074258bfcc5c60941166e13e2ede3 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Thu, 19 Dec 2024 08:37:55 -0600 Subject: [PATCH] Set dem_week to 1 in the draft --- cogs/draft.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/draft.py b/cogs/draft.py index 19d8e5c..7f408c8 100644 --- a/cogs/draft.py +++ b/cogs/draft.py @@ -403,7 +403,7 @@ class Draft(commands.Cog): await patch_draftpick(draft_pick) # TODO: uncomment for live draft player['team'] = draft_pick['owner'] - player['demotion_week'] = 2 + player['demotion_week'] = 1 # await patch_player(player['id'], team_id=draft_pick['owner']['id'], demotion_week=2) await put_player(player) # TODO: uncomment for live draft @@ -1215,7 +1215,7 @@ class Draft(commands.Cog): logger.info(f'{x["name"]} is a keeper') draft_pick = sorted_picks[keeper_count - 1] - this_player['demotion_week'] = 2 + this_player['demotion_week'] = 1 draft_pick['player'] = this_player logger.info(f'Setting {x["name"]} as {this_team["abbrev"]}\'s #{keeper_count} keeper with overall '