1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
This commit is contained in:
Steffo 2019-10-28 00:20:11 +01:00
parent d3d6331453
commit ea624dec61
2 changed files with 4 additions and 4 deletions

View file

@ -8,8 +8,6 @@ from .reminder import ReminderCommand
from .ship import ShipCommand
from .smecds import SmecdsCommand
from .videochannel import VideochannelCommand
from .dnditem import DnditemCommand
from .dndspell import DndspellCommand
from .trivia import TriviaCommand
from .matchmaking import MatchmakingCommand
from .pause import PauseCommand
@ -34,8 +32,6 @@ available_commands = [
ShipCommand,
SmecdsCommand,
VideochannelCommand,
DnditemCommand,
DndspellCommand,
TriviaCommand,
MatchmakingCommand,
PauseCommand,

View file

@ -6,6 +6,8 @@ from .dndinfo import DndinfoCommand
from .dndnew import DndnewCommand
from .dndedit import DndeditCommand
from .dndroll import DndrollCommand
from .dnditem import DnditemCommand
from .dndspell import DndspellCommand
# Enter the commands of your Pack here!
available_commands = [
@ -16,6 +18,8 @@ available_commands = [
DndnewCommand,
DndeditCommand,
DndrollCommand,
DnditemCommand,
DndspellCommand,
]
# Don't change this, it should automatically generate __all__