Changed the default login screen to change with settings.SERVERNAME.

This commit is contained in:
Griatch 2014-03-08 23:10:26 +01:00
parent 84dae72dfb
commit 2edea1eace
2 changed files with 17 additions and 9 deletions

View file

@ -3,11 +3,12 @@
# and run from game/gamesrc/world/connection_screens.py.
#
from django.conf import settings
from src.utils import utils
DEFAULT_SCREEN = \
"""{b=============================================================={n
Welcome to {gEvennia{n, version %s!
Welcome to {g%s{n, version %s!
If you have an existing account, connect to it by typing:
{wconnect <username> <password>{n
@ -16,4 +17,5 @@ DEFAULT_SCREEN = \
If you have spaces in your username, enclose it in quotes.
Enter {whelp{n for more info. {wlook{n will re-show this screen.
{b=============================================================={n""" % utils.get_evennia_version()
{b=============================================================={n""" \
% (settings.SERVERNAME, utils.get_evennia_version())