Add nick-command to account cmdset
This commit is contained in:
parent
11965a1c34
commit
11ddd26c7e
1 changed files with 4 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ command method rather than caller.msg().
|
||||||
|
|
||||||
from evennia.commands.cmdset import CmdSet
|
from evennia.commands.cmdset import CmdSet
|
||||||
from evennia.commands.default import help, comms, admin, system
|
from evennia.commands.default import help, comms, admin, system
|
||||||
from evennia.commands.default import building, account
|
from evennia.commands.default import building, account, general
|
||||||
|
|
||||||
|
|
||||||
class AccountCmdSet(CmdSet):
|
class AccountCmdSet(CmdSet):
|
||||||
|
|
@ -39,6 +39,9 @@ class AccountCmdSet(CmdSet):
|
||||||
self.add(account.CmdColorTest())
|
self.add(account.CmdColorTest())
|
||||||
self.add(account.CmdQuell())
|
self.add(account.CmdQuell())
|
||||||
|
|
||||||
|
# nicks
|
||||||
|
self.add(general.CmdNick())
|
||||||
|
|
||||||
# testing
|
# testing
|
||||||
self.add(building.CmdExamine())
|
self.add(building.CmdExamine())
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue