Deleted Spaces

This commit is contained in:
Alex Orid 2020-12-08 21:28:37 -05:00
parent b9a28a503c
commit c574b4cd14

View File

@ -22,7 +22,7 @@ class CommandRoll(AbstractCommand, metaclass=ABCMeta):
async def do_command(self, bot, discord_message: discord.Message):
print("!roll Detected")
#twitch_message.chat.send("test acknowledged")
diceRoll: str = ""
await bot.send_message(discord_message, "Rolling Dice...")
#await discord_message.channel.send("Rolling Dice...")
@ -68,7 +68,6 @@ class CommandRoll(AbstractCommand, metaclass=ABCMeta):
else:
diceRoll = str(roll)
diceRoll = discord_message.author.mention + " rolled: " + diceRoll
print(diceRoll)
await bot.send_message(discord_message, diceRoll)