This commit is contained in:
Skillet 2023-04-17 22:24:22 -04:00
parent 9b9cee7c27
commit 9205638625
2 changed files with 1 additions and 6 deletions

View File

@ -16,16 +16,10 @@ class Group(commands.Cog, name="group"):
async def baseperm(self, interaction: discord.Interaction, role: discord.Role, perms: str):
if role.id in self.client.whitelistGrps.keys():
await interaction.response.send_message(
f"**{role.name}** is already added, overwriting permissions..."
)
self.client.whitelistGrps[role.id].squadPerms = perms
self.client.whitelistGrps[role.id].updateGroup()
else:
log.info(f"Adding {role.name} ({role.id}) as a Whitelist role")
await interaction.response.send_message(
f"Adding **{role.name}** as a Whitelist role"
)
self.client.whitelistGrps[role.id] = config.WhitelistGroup(
name=role.name, roleID=role.id, permissions=perms
)

View File

@ -29,6 +29,7 @@ class Whitelist(commands.Cog):
except mysql.connector.Error as err:
log.error("MYSQL error!")
await interaction.response.send_message("Could not find steamID!")
return
for urole in interaction.user.roles:
if urole.id in self.client.whitelistGrps.keys():
disusername = interaction.user.nick if interaction.user.nick is not None else interaction.user.name