|
|
@@ -177,7 +177,7 @@ async def greet(ctx, user: str = Option(discord.User, "The user, you want to gre
|
|
|
|
|
|
#---------------------------------#
|
|
|
## Say
|
|
|
-@bot.slash_command(description="Let the bot send a message")
|
|
|
+"""@bot.slash_command(description="Let the bot send a message")
|
|
|
async def say(
|
|
|
ctx,
|
|
|
text: str = Option(description="Input the text you want to send"),
|
|
|
@@ -185,7 +185,7 @@ async def say(
|
|
|
):
|
|
|
channel= discord.utils.get(ctx.guild.channels, id = int(channel_input[2:-1]))
|
|
|
await channel.send(text)
|
|
|
- await ctx.respond("Message sent", ephemeral=True)
|
|
|
+ await ctx.respond("Message sent", ephemeral=True)"""
|
|
|
#---------------------------------#
|
|
|
|
|
|
#---------------------------------#
|