Compare commits
2 commits
e01c27d79d
...
2d7eeedfe6
Author | SHA1 | Date | |
---|---|---|---|
2d7eeedfe6 | |||
4d9011c7a5 |
2 changed files with 8 additions and 7 deletions
|
@ -2,7 +2,7 @@ import discord
|
|||
from redbot.core import checks, commands, Config
|
||||
|
||||
class Moderation(commands.Cog):
|
||||
"""Custom cog intended for use on the Galaxy discord server.
|
||||
"""Custom cog moderation cog, meant to copy GalacticBot.
|
||||
Developed by SeaswimmerTheFsh."""
|
||||
|
||||
def __init__(self, bot):
|
||||
|
|
|
@ -64,12 +64,13 @@ class Shortmute(commands.Cog):
|
|||
if user_id == interaction.user.id:
|
||||
await interaction.response.send_message(content="You are blacklisted from `/shortmute`!", ephemeral=True)
|
||||
return
|
||||
immune_roles_list = await self.config.guild(interaction.guild).immune_roles()
|
||||
for role_id in immune_roles_list:
|
||||
role = interaction.guild.get_role(role_id)
|
||||
if role in target.roles:
|
||||
await interaction.response.send_message(content="You're trying to shortmute someone who is immune from shortmuting.", ephemeral=True)
|
||||
return
|
||||
if interaction.user.guild_permissions.administrator is False:
|
||||
immune_roles_list = await self.config.guild(interaction.guild).immune_roles()
|
||||
for role_id in immune_roles_list:
|
||||
role = interaction.guild.get_role(role_id)
|
||||
if role in target.roles:
|
||||
await interaction.response.send_message(content="You're trying to shortmute someone who is immune from shortmuting.", ephemeral=True)
|
||||
return
|
||||
if duration in (1, -1):
|
||||
readable_duration = f"{duration} minute"
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue