diff --git a/commands/example.py b/commands/example.py index 691eed6..8b05963 100644 --- a/commands/example.py +++ b/commands/example.py @@ -22,7 +22,7 @@ async def check_bot_permission_example(interaction: Interaction): await send_message( interaction, f"Bot has the Permission: `{PermissionEnum.ADMINISTRATOR}`", - True, + ephemeral=True, ) @bot.tree.command( @@ -34,7 +34,7 @@ async def check_bot_permission_multiple_example(interaction: Interaction): await send_message( interaction, f"Bot has the Permissions: `{PermissionEnum.KICK_MEMBERS}`, `{PermissionEnum.BAN_MEMBERS}`", - True, + ephemeral=True, ) @bot.tree.command( @@ -46,7 +46,7 @@ async def check_permission_example(interaction: Interaction): await send_message( interaction, f"You have the Permission: `{PermissionEnum.ADMINISTRATOR}`", - True, + ephemeral=True, ) @bot.tree.command( @@ -58,7 +58,7 @@ async def check_permission_multiple_example(interaction: Interaction): await send_message( interaction, f"You have the Permissions: `{PermissionEnum.KICK_MEMBERS}`, `{PermissionEnum.BAN_MEMBERS}`", - True, + ephemeral=True, ) @bot.tree.command( diff --git a/commands/ping.py b/commands/ping.py index b829d31..a9bcba2 100644 --- a/commands/ping.py +++ b/commands/ping.py @@ -7,4 +7,4 @@ class PingCommand(BaseCommand): async def register(self, bot: ModuBotDiscord): @bot.tree.command(name="ping", description="Responds with Pong!") async def ping(interaction: Interaction): - await send_message(interaction, "Pong!", True) + await send_message(interaction, "Pong!", ephemeral=True) diff --git a/requirements.txt b/requirements.txt index 0bc51c6..f6c2332 100644 Binary files a/requirements.txt and b/requirements.txt differ