diff --git a/evennia/game_template/world/help_entries.py b/evennia/game_template/world/help_entries.py index 559aeb63a9..f68af62797 100644 --- a/evennia/game_template/world/help_entries.py +++ b/evennia/game_template/world/help_entries.py @@ -14,9 +14,13 @@ Each dict is on the form :: {'key': , + 'text': }`` # the actual help text. Can contain # subtopic sections 'category': , # optional, otherwise settings.DEFAULT_HELP_CATEGORY 'aliases': , # optional - 'text': }`` # the actual help text. Can contain # subtopic sections + 'locks': # optional, 'view' controls seeing in help index, 'read' + # if the entry can be read. If 'view' is unset, + # 'read' is used for the index. If unset, everyone + # can read/view the entry. """ @@ -25,6 +29,7 @@ HELP_ENTRY_DICTS = [ "key": "evennia", "aliases": ['ev'], "category": "General", + "locks": "read:perm(Developer)", "text": """ Evennia is a MUD game server in Python.