mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Add command for paltri
This commit is contained in:
parent
926fd733e2
commit
e59e8e6903
2 changed files with 13 additions and 0 deletions
|
@ -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__
|
||||
|
|
11
royalpack/commands/pmots.py
Normal file
11
royalpack/commands/pmots.py
Normal file
|
@ -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")
|
Loading…
Reference in a new issue