def at_cmdset_creation(self): """ Populates the cmdset """ super(PlayerCmdSet, self).at_cmdset_creation() # # any commands you add below will overload the default ones. # self.add(player.CmdQuit())
def at_cmdset_creation(self): """ Populates the cmdset """ super(AccountCmdSet, self).at_cmdset_creation() # # any commands you add below will overload the default ones. # self.add(player.CmdQuit()) self.add(player.CmdPuppet()) self.add(player.CmdUnpuppet()) self.add(player.CmdCharCreate()) self.add(player.CmdCharDelete()) self.add(player.CmdCharAll())