Branch addition #1

Merged
c0de merged 11 commits from zed/BaseballBot:Toof into main 2024-04-23 22:19:23 +00:00
2 changed files with 4 additions and 5 deletions
Showing only changes of commit 1f9e58273b - Show all commits

View File

@ -18,14 +18,13 @@ class ClearManager(BaseGameManager):
async def clear(self): async def clear(self):
"""Clear command - Clears the session scoreboard""" """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: for player in players:
player.total_points = 0 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!" clear_message = "The score has been cleared!"
recipient = await self.discord.fetch_user(self.message.author.id) await self.message.channel.send(clear_message)
await recipient.send(clear_message)

View File

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