Fixed a bug in serverconfig. Tweaked how the default connection screen is stored, to allow for server updates.

This commit is contained in:
Griatch 2011-04-12 22:22:04 +00:00
parent 7f9f21f45e
commit 88626842b7
4 changed files with 42 additions and 19 deletions

View file

@ -0,0 +1,18 @@
#
# This is Evennia's default connection screen. It is imported
# and run from game/gamesrc/world/connection_screens.py.
#
from src.utils import utils
DEFAULT_SCREEN = \
"""{b=============================================================={n
Welcome to {gEvennia{n, version %s!
If you have an existing account, connect to it by typing:
{wconnect <email> <password>{n
If you need to create an account, type (without the <>'s):
{wcreate \"<username>\" <email> <password>{n
Enter {whelp{n for more info. {wlook{n will re-load this screen.
{b=============================================================={n""" % utils.get_evennia_version()