fixed kick command
This commit is contained in:
parent
c24c82f718
commit
ae08eed093
1 changed files with 5 additions and 0 deletions
|
@ -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")]
|
||||||
|
|
Loading…
Reference in a new issue