mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Fix bug2
This commit is contained in:
parent
d3d6331453
commit
ea624dec61
2 changed files with 4 additions and 4 deletions
|
@ -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,
|
||||
|
|
|
@ -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__
|
||||
|
|
Loading…
Reference in a new issue