Fixed a bug in serverconfig. Tweaked how the default connection screen is stored, to allow for server updates.
This commit is contained in:
parent
7f9f21f45e
commit
88626842b7
4 changed files with 42 additions and 19 deletions
18
src/commands/connection_screen.py
Normal file
18
src/commands/connection_screen.py
Normal 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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue