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 .ship import ShipCommand
|
||||||
from .smecds import SmecdsCommand
|
from .smecds import SmecdsCommand
|
||||||
from .videochannel import VideochannelCommand
|
from .videochannel import VideochannelCommand
|
||||||
from .dnditem import DnditemCommand
|
|
||||||
from .dndspell import DndspellCommand
|
|
||||||
from .trivia import TriviaCommand
|
from .trivia import TriviaCommand
|
||||||
from .matchmaking import MatchmakingCommand
|
from .matchmaking import MatchmakingCommand
|
||||||
from .pause import PauseCommand
|
from .pause import PauseCommand
|
||||||
|
@ -34,8 +32,6 @@ available_commands = [
|
||||||
ShipCommand,
|
ShipCommand,
|
||||||
SmecdsCommand,
|
SmecdsCommand,
|
||||||
VideochannelCommand,
|
VideochannelCommand,
|
||||||
DnditemCommand,
|
|
||||||
DndspellCommand,
|
|
||||||
TriviaCommand,
|
TriviaCommand,
|
||||||
MatchmakingCommand,
|
MatchmakingCommand,
|
||||||
PauseCommand,
|
PauseCommand,
|
||||||
|
|
|
@ -6,6 +6,8 @@ from .dndinfo import DndinfoCommand
|
||||||
from .dndnew import DndnewCommand
|
from .dndnew import DndnewCommand
|
||||||
from .dndedit import DndeditCommand
|
from .dndedit import DndeditCommand
|
||||||
from .dndroll import DndrollCommand
|
from .dndroll import DndrollCommand
|
||||||
|
from .dnditem import DnditemCommand
|
||||||
|
from .dndspell import DndspellCommand
|
||||||
|
|
||||||
# Enter the commands of your Pack here!
|
# Enter the commands of your Pack here!
|
||||||
available_commands = [
|
available_commands = [
|
||||||
|
@ -16,6 +18,8 @@ available_commands = [
|
||||||
DndnewCommand,
|
DndnewCommand,
|
||||||
DndeditCommand,
|
DndeditCommand,
|
||||||
DndrollCommand,
|
DndrollCommand,
|
||||||
|
DnditemCommand,
|
||||||
|
DndspellCommand,
|
||||||
]
|
]
|
||||||
|
|
||||||
# Don't change this, it should automatically generate __all__
|
# Don't change this, it should automatically generate __all__
|
||||||
|
|
Loading…
Reference in a new issue