From ea624dec610a34ecdd50ce12c97c7d25607b3a6f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 28 Oct 2019 00:20:11 +0100 Subject: [PATCH] Fix bug2 --- royalnet/packs/royal/commands/__init__.py | 4 ---- royalnet/packs/rpg/commands/__init__.py | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) 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__