diff --git a/royalnet/commands/id.py b/royalnet/commands/id.py index 27dc2de5..c41fb331 100644 --- a/royalnet/commands/id.py +++ b/royalnet/commands/id.py @@ -3,6 +3,7 @@ import discord import typing from ..utils import Command, Call + class IdCommand(Command): command_name = "id" @@ -10,16 +11,16 @@ class IdCommand(Command): command_syntax = "" @classmethod - def telegram(cls, call: Call): + async def telegram(cls, call: Call): chat: telegram.Chat = call.channel - call.reply(f"🔢 L'id di questa chat è [b]{chat.id}[/b].") + await call.reply(f"🔢 L'id di questa chat è [b]{chat.id}[/b].") @classmethod - def discord(cls, call: Call): + async def discord(cls, call: Call): channel = call.channel if isinstance(channel, discord.TextChannel): - call.reply(f"🔢 L'id di questa chat è [b]{channel.id}[/b].") + await call.reply(f"🔢 L'id di questa chat è [b]{channel.id}[/b].") elif isinstance(channel, discord.DMChannel): - call.reply(f"🔢 L'id di questa chat è [b]{channel.id}[/b].") + await call.reply(f"🔢 L'id di questa chat è [b]{channel.id}[/b].") else: - call.reply(f"⚠️ Questo tipo di chat non è supportato.") + await call.reply(f"⚠️ Questo tipo di chat non è supportato.")