diff options
author | 2022-09-18 22:03:34 +0100 | |
---|---|---|
committer | 2022-09-18 22:03:34 +0100 | |
commit | 46d1e8ddb217f1bb5e07179b32db50b6a04b6de8 (patch) | |
tree | c3f4db63c2751c51acfee97d016551b8f677e29b /bot/exts/fun/battleship.py | |
parent | Remove unnecessary hasattr check (diff) | |
parent | Fix Poetry 1.2 Support (#1099) (diff) |
Merge branch 'main' into fix-whitelist-inheritance
Diffstat (limited to 'bot/exts/fun/battleship.py')
-rw-r--r-- | bot/exts/fun/battleship.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/fun/battleship.py b/bot/exts/fun/battleship.py index beff196f..77e38427 100644 --- a/bot/exts/fun/battleship.py +++ b/bot/exts/fun/battleship.py @@ -110,8 +110,8 @@ class Game: self.gameover: bool = False - self.turn: Optional[discord.Member] = None - self.next: Optional[discord.Member] = None + self.turn: Optional[Player] = None + self.next: Optional[Player] = None self.match: Optional[re.Match] = None self.surrender: bool = False |