From 757aff40ecf495b8531684163229195708c48e4e Mon Sep 17 00:00:00 2001 From: gsd Date: Fri, 3 Mar 2023 22:50:29 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B7=D0=B0=D0=B1=D1=8B=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin_ext/unban.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 admin_ext/unban.py diff --git a/admin_ext/unban.py b/admin_ext/unban.py new file mode 100644 index 0000000..9625bc1 --- /dev/null +++ b/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) \ No newline at end of file