From 3083d1c08260397067adf7e8aff2043467959b1d Mon Sep 17 00:00:00 2001 From: BlauFeuer Date: Mon, 5 Mar 2018 14:52:29 -0500 Subject: [PATCH] class vars options, split renamed switch_options, rhs_split --- evennia/commands/default/general.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/commands/default/general.py b/evennia/commands/default/general.py index 254081ba1..56e7825d6 100644 --- a/evennia/commands/default/general.py +++ b/evennia/commands/default/general.py @@ -117,7 +117,7 @@ class CmdNick(COMMAND_DEFAULT_CLASS): """ key = "nick" - options = ("inputline", "object", "account", "list", "delete", "clearall") + switch_options = ("inputline", "object", "account", "list", "delete", "clearall") aliases = ["nickname", "nicks"] locks = "cmd:all()" @@ -448,7 +448,7 @@ class CmdGive(COMMAND_DEFAULT_CLASS): placing it in their inventory. """ key = "give" - split = " to " + rhs_split = " to " locks = "cmd:all()" arg_regex = r"\s|$"