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.
|
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
|
### long_description
|
||||||
|
|
||||||
Required: No
|
Required: No
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,7 @@ class EvenniaGameDirClient(object):
|
||||||
'game_name': settings.SERVERNAME,
|
'game_name': settings.SERVERNAME,
|
||||||
'game_status': gd_config['game_status'],
|
'game_status': gd_config['game_status'],
|
||||||
'game_website': gd_config.get('game_website') or '',
|
'game_website': gd_config.get('game_website') or '',
|
||||||
|
'short_description': gd_config.get('short_description') or '',
|
||||||
'long_description': gd_config.get('long_description') or '',
|
'long_description': gd_config.get('long_description') or '',
|
||||||
'listing_contact': gd_config['listing_contact'],
|
'listing_contact': gd_config['listing_contact'],
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue