We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df51bc6 commit 2cea652Copy full SHA for 2cea652
bot/cogs/slash.py
@@ -153,7 +153,7 @@ async def _lang(self, interaction: nextcord.Interaction):
153
@commands.has_permissions(administrator=True)
154
async def clear(self, interaction: nextcord.Interaction, amount: int):
155
if amount > 1000 :
156
- await interaction.response.send_message('Cannot delete more than 500 messages.', ephemeral=True)
+ await interaction.response.send_message('Cannot delete more than 1000 messages.', ephemeral=True)
157
else:
158
new_count = {}
159
messages = await interaction.channel.history(limit=amount).flatten()
0 commit comments