From e753423957fd8390199a60ed9993efa29a1bba84 Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Mon, 29 May 2023 23:04:57 +0200 Subject: [PATCH] remove whitespace --- bot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bot.py b/bot.py index 7d58e3b..2a4c642 100644 --- a/bot.py +++ b/bot.py @@ -101,7 +101,7 @@ class Confirm(discord.ui.View): @bot.slash_command(guild_ids=[261575556708040705]) @commands.has_role(member_role) -async def roll(ctx, +async def roll(ctx, dice: Option(str, "Würfel den/die du werfen willst. z.B. W20, 3d6", default="W20"), ): """Rolle einen oder mehrere Würfel""" @@ -134,7 +134,7 @@ async def roll(ctx, @bot.slash_command(guild_ids=[261575556708040705]) @commands.has_role(gm_role) -async def gmroll(ctx, +async def gmroll(ctx, dice: Option(str, "Würfel den/die du werfen willst. z.B. W20, 3d6", default="W20"), ): """Rolle einen oder mehrere Würfel verdeckt""" @@ -178,7 +178,7 @@ class MyModal(Modal): original_message = await interaction.channel.fetch_message(self.message_id) for x in list(emojitext): await original_message.add_reaction(alphabet[x]) - + @bot.message_command(name="Emoji Text", guild_ids=[261575556708040705]) @commands.has_role(member_role)