mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 12:37:16 +02:00
Fixed a case-sensitive regression when setting help categories. Resolves #956.
This commit is contained in:
parent
72bdc66022
commit
20403e356b
1 changed files with 1 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue