remove whitespace
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aaron Riedel 2023-05-29 23:04:57 +02:00
parent ee561c5356
commit e753423957
Signed by: aaron
GPG key ID: 643004654D40D577

6
bot.py
View file

@ -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)