diff --git a/royalpack/commands/__init__.py b/royalpack/commands/__init__.py index 8b84589f..5f05b712 100644 --- a/royalpack/commands/__init__.py +++ b/royalpack/commands/__init__.py @@ -30,6 +30,7 @@ from .userinfo import UserinfoCommand from .spell import SpellCommand from .ahnonlosoio import AhnonlosoioCommand from .eat import EatCommand +from .pmots import PmotsCommand # Enter the commands of your Pack here! available_commands = [ @@ -64,6 +65,7 @@ available_commands = [ SpellCommand, AhnonlosoioCommand, EatCommand, + PmotsCommand, ] # Don't change this, it should automatically generate __all__ diff --git a/royalpack/commands/pmots.py b/royalpack/commands/pmots.py new file mode 100644 index 00000000..91f5ea54 --- /dev/null +++ b/royalpack/commands/pmots.py @@ -0,0 +1,11 @@ +from typing import * +from royalnet.commands import * + + +class PmotsCommand(Command): + name: str = "pmots" + + description: str = "Confondi Proto!" + + async def run(self, args: CommandArgs, data: CommandData) -> None: + await data.reply("👣 pmots pmots")