fixed kick command

This commit is contained in:
SeaswimmerTheFsh 2023-07-01 10:17:33 -04:00
parent c24c82f718
commit ae08eed093

View file

@ -106,6 +106,11 @@ class Moderation(commands.Cog):
if not reason: if not reason:
await ctx.message.reply("Please include a reason!") await ctx.message.reply("Please include a reason!")
return return
try:
await target.kick()
except revolt.errors.HTTPError:
await ctx.message.reply("User is not in the server!")
return
response = await ctx.message.reply(f"{target.mention} has been kicked!\n**Reason** - `{reason}`") response = await ctx.message.reply(f"{target.mention} has been kicked!\n**Reason** - `{reason}`")
try: try:
embeds = [CustomEmbed(title="Warned", description=f"You have been kicked from {ctx.server.name}!\n### Reason\n`{reason}`", color="#5d82d1")] embeds = [CustomEmbed(title="Warned", description=f"You have been kicked from {ctx.server.name}!\n### Reason\n`{reason}`", color="#5d82d1")]