stopped deleting startgame messages due to less reliance on discord as a display format
This commit is contained in:
parent
9b9a25f35a
commit
f845bb431a
|
@ -182,7 +182,6 @@ class StartGameCommand(Command):
|
||||||
game.teams['away'].set_pitcher(rotation_slot = day)
|
game.teams['away'].set_pitcher(rotation_slot = day)
|
||||||
game.teams['home'].set_pitcher(rotation_slot = day)
|
game.teams['home'].set_pitcher(rotation_slot = day)
|
||||||
channel = msg.channel
|
channel = msg.channel
|
||||||
await msg.delete()
|
|
||||||
|
|
||||||
game_task = asyncio.create_task(watch_game(channel, game, user=msg.author, league=league))
|
game_task = asyncio.create_task(watch_game(channel, game, user=msg.author, league=league))
|
||||||
await game_task
|
await game_task
|
||||||
|
@ -201,7 +200,6 @@ class StartRandomGameCommand(Command):
|
||||||
return
|
return
|
||||||
|
|
||||||
channel = msg.channel
|
channel = msg.channel
|
||||||
await msg.delete()
|
|
||||||
await channel.send("Rolling the bones... This might take a while.")
|
await channel.send("Rolling the bones... This might take a while.")
|
||||||
teamslist = games.get_all_teams()
|
teamslist = games.get_all_teams()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue