From 20403e356b81e19bd6a9c19889be3452ea1701cd Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 14 Apr 2016 21:39:41 +0200 Subject: [PATCH] Fixed a case-sensitive regression when setting help categories. Resolves #956. --- evennia/commands/default/help.py | 1 + 1 file changed, 1 insertion(+) diff --git a/evennia/commands/default/help.py b/evennia/commands/default/help.py index 713dfc4df6..77ca63f5c8 100644 --- a/evennia/commands/default/help.py +++ b/evennia/commands/default/help.py @@ -214,6 +214,7 @@ class CmdSetHelp(MuxCommand): old_entry = None category = lhslist[1] if nlist > 1 else "General" lockstring = ",".join(lhslist[2:]) if nlist > 2 else "view:all()" + category = category.lower() if 'append' in switches or "merge" in switches: # merge/append operations