Discord username fix and changed start command

This commit is contained in:
Zed 2023-11-16 22:51:35 -06:00
parent 04df87f054
commit 1f9e58273b
2 changed files with 4 additions and 5 deletions

View File

@ -18,14 +18,13 @@ class ClearManager(BaseGameManager):
async def clear(self):
"""Clear command - Clears the session scoreboard"""
players = Player.select(Player.total_points)
players = Player.select(Player.player_id, Player.total_points)
for player in players:
player.total_points = 0
Player.bulk_update(players, Player.total_points)
Player.bulk_update(players, fields=[Player.total_points])
clear_message = "The score has been cleared!"
recipient = await self.discord.fetch_user(self.message.author.id)
await recipient.send(clear_message)
await self.message.channel.send(clear_message)

View File

@ -13,7 +13,7 @@ class NewGameManager(BaseGameManager):
def __init__(self):
super().__init__()
self.commands.append(("braveball", self.start))
self.commands.append(("bb", self.start))
async def start(self):
"""