mirror of
https://github.com/evennia/evennia.git
synced 2026-03-20 14:56:30 +01:00
9 lines
192 B
Python
9 lines
192 B
Python
import gameconf
|
|
|
|
def general_context(request):
|
|
"""
|
|
Returns common Evennia-related context stuff.
|
|
"""
|
|
return {
|
|
'game_name': gameconf.get_configvalue('site_name'),
|
|
}
|