mirror of
https://github.com/evennia/evennia.git
synced 2026-04-03 14:37:17 +02:00
EGD: Added a short_description to go with long_description.
This commit is contained in:
parent
269415269b
commit
b5bd15b2e8
2 changed files with 8 additions and 0 deletions
|
|
@ -107,6 +107,13 @@ Required: No
|
|||
|
||||
The URL to your game's website, if you have one.
|
||||
|
||||
### short_description
|
||||
|
||||
Required: Yes
|
||||
|
||||
A short (max of 255 characters) description of your game that will appear
|
||||
on the main game index page.
|
||||
|
||||
### long_description
|
||||
|
||||
Required: No
|
||||
|
|
|
|||
|
|
@ -77,6 +77,7 @@ class EvenniaGameDirClient(object):
|
|||
'game_name': settings.SERVERNAME,
|
||||
'game_status': gd_config['game_status'],
|
||||
'game_website': gd_config.get('game_website') or '',
|
||||
'short_description': gd_config.get('short_description') or '',
|
||||
'long_description': gd_config.get('long_description') or '',
|
||||
'listing_contact': gd_config['listing_contact'],
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue