1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Fix royalnetprofile command

This commit is contained in:
Steffo 2019-07-08 02:16:25 +03:00
parent 946a8f23f9
commit 0fa2cec5c2

View file

@ -1,6 +1,6 @@
import asyncio import asyncio
from ..utils import Command, Call from ..utils import Command, Call
from ..error import InvalidInputError from ..database.tables import Royal, Telegram, Discord
class RoyalnetprofileCommand(Command): class RoyalnetprofileCommand(Command):
@ -9,9 +9,11 @@ class RoyalnetprofileCommand(Command):
command_description = "Invia in chat il link al tuo profilo Royalnet!" command_description = "Invia in chat il link al tuo profilo Royalnet!"
command_syntax = "" command_syntax = ""
require_alchemy_tables = {Royal, Telegram, Discord}
@classmethod @classmethod
async def common(cls, call: Call): async def common(cls, call: Call):
author = await call.get_author() author = await call.get_author(error_if_none=True)
if author is None: if author is None:
await call.reply("⚠️ Devi essere registrato a Royalnet per usare questo comando!") await call.reply("⚠️ Devi essere registrato a Royalnet per usare questo comando!")
return return