From 567254e028879d73f4e680925b474cf34fd9f63f Mon Sep 17 00:00:00 2001 From: BlauFeuer Date: Mon, 5 Mar 2018 14:34:10 -0500 Subject: [PATCH] class var options renamed switch_options --- evennia/commands/default/batchprocess.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/commands/default/batchprocess.py b/evennia/commands/default/batchprocess.py index bf09360c71..5970d35887 100644 --- a/evennia/commands/default/batchprocess.py +++ b/evennia/commands/default/batchprocess.py @@ -237,7 +237,7 @@ class CmdBatchCommands(_COMMAND_DEFAULT_CLASS): """ key = "@batchcommands" aliases = ["@batchcommand", "@batchcmd"] - options = ("interactive",) + switch_options = ("interactive",) locks = "cmd:perm(batchcommands) or perm(Developer)" help_category = "Building" @@ -348,7 +348,7 @@ class CmdBatchCode(_COMMAND_DEFAULT_CLASS): """ key = "@batchcode" aliases = ["@batchcodes"] - options = ("interactive", "debug") + switch_options = ("interactive", "debug") locks = "cmd:superuser()" help_category = "Building"