From f845bb431a6809e9aa3bc903672d20f3c3dad5be Mon Sep 17 00:00:00 2001 From: Sakimori Date: Thu, 11 Feb 2021 18:12:36 -0500 Subject: [PATCH] stopped deleting startgame messages due to less reliance on discord as a display format --- the_prestige.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/the_prestige.py b/the_prestige.py index 9b617e1..103d34b 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -182,7 +182,6 @@ class StartGameCommand(Command): game.teams['away'].set_pitcher(rotation_slot = day) game.teams['home'].set_pitcher(rotation_slot = day) channel = msg.channel - await msg.delete() game_task = asyncio.create_task(watch_game(channel, game, user=msg.author, league=league)) await game_task @@ -201,7 +200,6 @@ class StartRandomGameCommand(Command): return channel = msg.channel - await msg.delete() await channel.send("Rolling the bones... This might take a while.") teamslist = games.get_all_teams()