mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
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>,
|
||||
'text': <str>}`` # the actual help text. Can contain # subtopic sections
|
||||
'category': <str>, # optional, otherwise settings.DEFAULT_HELP_CATEGORY
|
||||
'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",
|
||||
"aliases": ['ev'],
|
||||
"category": "General",
|
||||
"locks": "read:perm(Developer)",
|
||||
"text": """
|
||||
Evennia is a MUD game server in Python.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue