Update game_template' with help changes
This commit is contained in:
parent
201e567e34
commit
68df7b3a91
1 changed files with 6 additions and 1 deletions
|
|
@ -14,9 +14,13 @@ Each dict is on the form
|
||||||
::
|
::
|
||||||
|
|
||||||
{'key': <str>,
|
{'key': <str>,
|
||||||
|
'text': <str>}`` # the actual help text. Can contain # subtopic sections
|
||||||
'category': <str>, # optional, otherwise settings.DEFAULT_HELP_CATEGORY
|
'category': <str>, # optional, otherwise settings.DEFAULT_HELP_CATEGORY
|
||||||
'aliases': <list>, # optional
|
'aliases': <list>, # optional
|
||||||
'text': <str>}`` # the actual help text. Can contain # subtopic sections
|
'locks': <str> # 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",
|
"key": "evennia",
|
||||||
"aliases": ['ev'],
|
"aliases": ['ev'],
|
||||||
"category": "General",
|
"category": "General",
|
||||||
|
"locks": "read:perm(Developer)",
|
||||||
"text": """
|
"text": """
|
||||||
Evennia is a MUD game server in Python.
|
Evennia is a MUD game server in Python.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue