Browse Source

забыл

huy
gsd 2 years ago
parent
commit
757aff40ec
  1. 13
      admin_ext/unban.py

13
admin_ext/unban.py

@ -0,0 +1,13 @@
import discord
class Extension:
def __init__(self, core):
@core.tree.command(name = "unban", description = "Разбанить игрока")
@discord.app_commands.describe(profile=core.ANY_INPUT)
async def ban_player(
interaction: discord.Interaction,
profile: str
):
steam64 = await core.GetSteam64OfDiscord(interaction.user)
player = await core.GetPlayer(profile, steam64, False)
return await interaction.response.send_message(f'{await player.unban()}', ephemeral=False)
Loading…
Cancel
Save