There was an error while loading. Please reload this page.
1 parent ccb8dfb commit b816490Copy full SHA for b816490
docs/Interactions/context-menus.mdx
@@ -57,7 +57,7 @@ async def is_this_user_sus(ctx, member: discord.Member): # user commands return
57
58
```python
59
@bot.message_command(name="Is Message Sus") # creates a global message command. use guild_ids=[] to create guild-specific commands.
60
-async def show_id(ctx, message: discord.Message): # message commands return the message
+async def is_this_msg_sus(ctx, message: discord.Message): # message commands return the message
61
await ctx.respond(f"Message {message.id} sent by {member.name} is {'not sus' if message.id == 543397958197182464 else 'sus'}")
62
```
63
0 commit comments