discord-bot/cogs/moderation/pruneCog.py
rzmk 2b8e2345f9 First official build of bot!
Co-authored-by: iakrules <64628083+iakrules@noreply.github.com>
2021-08-01 14:36:34 -04:00

18 lines
No EOL
519 B
Python

import discord
from discord.ext import commands
class PruneCog(commands.Cog):
def __init__(self, bot):
self.bot = bot
# Commands
@commands.command(aliases=['clear', 'prune'])
@commands.has_permissions(manage_messages=True)
async def purge(self, ctx, amount=10):
"""Removes a number of messages (10 by default)"""
await ctx.channel.purge(limit=amount+1)
await ctx.send(f'`{amount}` messages deleted.', delete_after=3)
def setup(bot):
bot.add_cog(PruneCog(bot))