import discord class Extension: core = None def __init__(self, core): self.core = core @core.tree.command(name = "ban", description = "Забанить игрока на серверах") @discord.app_commands.describe(profile=core.ANY_INPUT, reason="причина", minutes="время бана | 0 - навсегда") async def ban_player( interaction: discord.Interaction, profile: str, reason: str, 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) async def __call__(self, profile, reason, minutes, requester): steam64 = await self.core.GetSteam64OfDiscord(requester) player = await self.core.GetPlayer(profile, steam64, False) return await player.ban(reason, minutes)