forked from c0de/BaseballBot
Discord username fix and changed start command
This commit is contained in:
parent
04df87f054
commit
1f9e58273b
@ -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)
|
|
||||||
|
@ -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):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user