This commit is contained in:
c0de 2022-11-10 21:46:42 -06:00
parent fbf588a85e
commit 5131c4a3c1

View File

@ -2,7 +2,7 @@
# Copyright 2022 - c0de <c0de@c0de.dev> # Copyright 2022 - c0de <c0de@c0de.dev>
# Licensed under the MIT License (https://opensource.org/licenses/MIT) # Licensed under the MIT License (https://opensource.org/licenses/MIT)
# pylint: disable=no-member # pylint: disable=no-member,not-an-iterable
""" """
A Context Manager / State Machine that keeps track of A Context Manager / State Machine that keeps track of
@ -10,8 +10,6 @@
Discord channel Discord channel
""" """
import pdb
import math
import uuid import uuid
import datetime import datetime
@ -162,7 +160,7 @@ class GameManager:
if guess_count < 3: if guess_count < 3:
self.game = None self.game = None
self.is_running = False self.is_running = False
await self.message.channel.send( return await self.message.channel.send(
("Play closed!\n" + "However, there were not enough participants.") ("Play closed!\n" + "However, there were not enough participants.")
) )
@ -217,9 +215,8 @@ class GameManager:
) )
Guess.update({"guess": value}).where( Guess.update({"guess": value}).where(
(Guess.game.game_id == self.game.game_id) (Guess.game == self.game.game_id)
& & (Guess.player_id == self.message.author.id)
(Guess.player_id == self.message.author.id)
).execute() ).execute()
if created: if created: