Browse Source

так будет круче

huy
gsd 2 years ago
parent
commit
914b626f45
  1. 6
      admin_ext/ban.py
  2. 6
      admin_ext/unban.py
  3. 4
      other_ext/vip_roles.py

6
admin_ext/ban.py

@ -13,7 +13,11 @@ class Extension:
minutes: int = 0
):
await interaction.response.defer(thinking=True)
return await interaction.followup.send(f'{await self.__call__(profile, reason, minutes, interaction.user)}', ephemeral=False)
await interaction.followup.send(f'{await self.__call__(profile, reason, minutes, interaction.user)}', ephemeral=False)
try:
await self.core.loaded_extensions["ban_roles"].updater()
except:
print("Cannot update ban roles on main server")
async def __call__(self, profile, reason, minutes, discord_user):
steam64 = await self.core.GetSteam64OfDiscord(discord_user)

6
admin_ext/unban.py

@ -11,7 +11,11 @@ class Extension:
profile: str
):
await interaction.response.defer(thinking=True)
return await interaction.followup.send(f'{await self.__call__(profile, interaction.user)}', ephemeral=False)
await interaction.followup.send(f'{await self.__call__(profile, interaction.user)}', ephemeral=False)
try:
await self.core.loaded_extensions["ban_roles"].updater()
except:
print("Cannot update ban roles on main server")
async def __call__(self, profile, discord_user):
steam64 = await self.core.GetSteam64OfDiscord(discord_user)

4
other_ext/vip_roles.py

@ -62,7 +62,7 @@ class Extension:
if member is None:
continue
try:
print(f"Remove role({role_id}) from {member}")
print(f"Remove role({role_id}) from {member}", reason = "Автоматически, игрок больше не имеет вип")
await member.remove_roles(VIP_ROLE)
except Exception as err:
print(f"Failed remove role ({role_id}) to {member}, err: {err}")
@ -72,6 +72,6 @@ class Extension:
continue
try:
print(f"Add role({role_id}) to {member}")
await member.add_roles(VIP_ROLE)
await member.add_roles(VIP_ROLE, reason = "Автоматически, игрок приобрел(не точно) вип на серверах")
except Exception as err:
print(f"Failed add role ({role_id}) to {member}, err: {err}")
Loading…
Cancel
Save