Moved db save command to the right spot

This commit is contained in:
Kevin Rode 2021-01-04 02:17:39 -05:00
parent 6393f006e8
commit f5cb646087

View File

@ -685,12 +685,13 @@ async def watch_game(channel, newgame, user = None):
await embed.unpin() await embed.unpin()
gamesarray.pop(gamesarray.index(newgame)) #cleanup is important! gamesarray.pop(gamesarray.index(newgame)) #cleanup is important!
newgame.add_stats() newgame.add_stats()
db.cache_history(newgame.teams['home'].name, newgame.teams["home"].score, newgame.teams['away'].name, newgame.teams['away'].score)
del newgame del newgame
if len(gamesqueue) > 0: if len(gamesqueue) > 0:
channel, game, user_mention = gamesqueue.pop(0) channel, game, user_mention = gamesqueue.pop(0)
queue_task = asyncio.create_task(play_from_queue(channel, game, user_mention)) queue_task = asyncio.create_task(play_from_queue(channel, game, user_mention))
await queue_task await queue_task
db.cache_history(newgame.teams['home'].name, newgame.teams["home"].score, newgame.teams['away'].name, newgame.teams['away'].score)
async def play_from_queue(channel, game, user_mention): async def play_from_queue(channel, game, user_mention):
await channel.send(f"{user_mention}, your game's ready.") await channel.send(f"{user_mention}, your game's ready.")