From 0d066f5d7389553fda869f836565dbcaebe46976 Mon Sep 17 00:00:00 2001 From: Adam Curtis Date: Mon, 8 Jul 2024 08:43:11 -0400 Subject: [PATCH] fix: TagCmd.switch_options was misnamed --- evennia/commands/default/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index 53b3c6ba94..9dec42d582 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -3922,7 +3922,7 @@ class CmdTag(COMMAND_DEFAULT_CLASS): key = "@tag" aliases = ["@tags"] - options = ("search", "del") + switch_options = ("search", "del") locks = "cmd:perm(tag) or perm(Builder)" help_category = "Building" arg_regex = r"(/\w+?(\s|$))|\s|$"