EGD: Added a short_description to go with long_description.

This commit is contained in:
Greg Taylor 2016-04-12 03:09:07 -07:00
parent 269415269b
commit b5bd15b2e8
2 changed files with 8 additions and 0 deletions

View file

@ -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

View file

@ -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'],