From f1f94b47887964495928eec871f03a29514fdb4e Mon Sep 17 00:00:00 2001 From: BlauFeuer Date: Mon, 5 Mar 2018 14:30:37 -0500 Subject: [PATCH] class var options renamed switch_options --- evennia/commands/default/account.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/commands/default/account.py b/evennia/commands/default/account.py index 81539bba17..40805f7465 100644 --- a/evennia/commands/default/account.py +++ b/evennia/commands/default/account.py @@ -467,7 +467,7 @@ class CmdOption(COMMAND_DEFAULT_CLASS): """ key = "@option" aliases = "@options" - options = ("save", "clear") + switch_options = ("save", "clear") locks = "cmd:all()" # this is used by the parent @@ -651,7 +651,7 @@ class CmdQuit(COMMAND_DEFAULT_CLASS): game. Use the /all switch to disconnect from all sessions. """ key = "@quit" - options = ("all",) + switch_options = ("all",) locks = "cmd:all()" # this is used by the parent