feat(shortmute): added the ability for people with administrator to shortmute people in the immune roles list
All checks were successful
Pylint / Pylint (push) Successful in 1m16s

This commit is contained in:
Seaswimmer 2023-09-27 13:28:39 -04:00
parent 4d9011c7a5
commit 2d7eeedfe6
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -64,6 +64,7 @@ class Shortmute(commands.Cog):
if user_id == interaction.user.id: if user_id == interaction.user.id:
await interaction.response.send_message(content="You are blacklisted from `/shortmute`!", ephemeral=True) await interaction.response.send_message(content="You are blacklisted from `/shortmute`!", ephemeral=True)
return return
if interaction.user.guild_permissions.administrator is False:
immune_roles_list = await self.config.guild(interaction.guild).immune_roles() immune_roles_list = await self.config.guild(interaction.guild).immune_roles()
for role_id in immune_roles_list: for role_id in immune_roles_list:
role = interaction.guild.get_role(role_id) role = interaction.guild.get_role(role_id)