mirror of
https://github.com/evennia/evennia.git
synced 2026-03-20 23:06:31 +01:00
Possible files that need to be cleanedup; commands/info.py:cmd_list commands/general.py:cmd_who commands/comsys.py:cmd_who cmdtable.py ansi.py
11 lines
266 B
Python
11 lines
266 B
Python
from django.conf import settings
|
|
import gameconf
|
|
|
|
def general_context(request):
|
|
"""
|
|
Returns common Evennia-related context stuff.
|
|
"""
|
|
return {
|
|
'game_name': gameconf.get_configvalue('site_name'),
|
|
'media_url': settings.MEDIA_URL,
|
|
}
|