Add nick-command to account cmdset

This commit is contained in:
Griatch 2018-03-03 10:30:14 +01:00
parent 11965a1c34
commit 11ddd26c7e

View file

@ -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())