diff --git a/royalnet/packs/royal/commands/__init__.py b/royalnet/packs/royal/commands/__init__.py index cf068492..2ca890eb 100644 --- a/royalnet/packs/royal/commands/__init__.py +++ b/royalnet/packs/royal/commands/__init__.py @@ -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, diff --git a/royalnet/packs/rpg/commands/__init__.py b/royalnet/packs/rpg/commands/__init__.py index db8cc1ec..2c22a65c 100644 --- a/royalnet/packs/rpg/commands/__init__.py +++ b/royalnet/packs/rpg/commands/__init__.py @@ -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__