From c29cb96e4b20f43a94a5491c7b55ae1cc82d4abb Mon Sep 17 00:00:00 2001 From: BlauFeuer Date: Fri, 2 Mar 2018 07:44:50 -0500 Subject: [PATCH] Adds options var to CmdBatchCommands, CmdBatchCode --- evennia/commands/default/batchprocess.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/evennia/commands/default/batchprocess.py b/evennia/commands/default/batchprocess.py index f0b117a816..bf09360c71 100644 --- a/evennia/commands/default/batchprocess.py +++ b/evennia/commands/default/batchprocess.py @@ -237,6 +237,7 @@ class CmdBatchCommands(_COMMAND_DEFAULT_CLASS): """ key = "@batchcommands" aliases = ["@batchcommand", "@batchcmd"] + options = ("interactive",) locks = "cmd:perm(batchcommands) or perm(Developer)" help_category = "Building" @@ -347,6 +348,7 @@ class CmdBatchCode(_COMMAND_DEFAULT_CLASS): """ key = "@batchcode" aliases = ["@batchcodes"] + options = ("interactive", "debug") locks = "cmd:superuser()" help_category = "Building"