mirror of
https://github.com/evennia/evennia.git
synced 2026-03-27 18:26:32 +01:00
Fixed a webclient issue that caused urls to loose their following whitespace.
This commit is contained in:
parent
c56ede0fa2
commit
6d73b05d91
2 changed files with 19 additions and 17 deletions
|
|
@ -74,7 +74,7 @@ def create_objects():
|
|||
limbo_obj.id = 2
|
||||
string = " ".join([
|
||||
"Welcome to your new {wEvennia{n-based game. From here you are ready to begin development.",
|
||||
"If you should need help or would like to participate in community discussions, visit http://evennia.com.",
|
||||
"Visit http://evennia.com if you should need help or would like to participate in community discussions.",
|
||||
"If you are logged in as User #1 you can create a demo/tutorial area with '@batchcommand contrib.tutorial_world.build'.",
|
||||
"Log out and create a new non-admin account at the login screen to play the tutorial properly."])
|
||||
string = _(string)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue