From 8a031192e08e32ede9793db85f5ec235d8dab171 Mon Sep 17 00:00:00 2001 From: InspectorCaracal <51038201+InspectorCaracal@users.noreply.github.com> Date: Thu, 21 Dec 2023 17:47:42 -0700 Subject: [PATCH] fix _get_cmdset return type --- evennia/commands/cmdhandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/cmdhandler.py b/evennia/commands/cmdhandler.py index 261ff3108e..8946bc19d0 100644 --- a/evennia/commands/cmdhandler.py +++ b/evennia/commands/cmdhandler.py @@ -410,7 +410,7 @@ def get_and_merge_cmdsets( try: returnValue(obj.get_cmdsets(caller=caller, current=current)) except AttributeError: - returnValue(((None, None, None), [])) + returnValue((CmdSet(), [])) local_obj_cmdsets = []