Fixed bugs that now allows multiple sessions to connect through the same player to different characters. Still lots of bugs and inconsistencies, the permissions of superusers don't quite transfer sometimes, for example.
This commit is contained in:
parent
3aa122c41a
commit
a84b4f24fc
4 changed files with 23 additions and 15 deletions
|
|
@ -8,6 +8,7 @@ a Player object as caller rather than a Character.
|
|||
from src.commands.cmdset import CmdSet
|
||||
from src.commands.default import help, comms, general, admin, system
|
||||
|
||||
from src.commands.default import building
|
||||
class OOCCmdSet(CmdSet):
|
||||
"""
|
||||
Implements the player command set.
|
||||
|
|
@ -28,6 +29,9 @@ class OOCCmdSet(CmdSet):
|
|||
self.add(general.CmdQuit())
|
||||
self.add(general.CmdPassword())
|
||||
|
||||
# test
|
||||
self.add(building.CmdExamine())
|
||||
|
||||
# Help command
|
||||
self.add(help.CmdHelp())
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue