mirror of
https://github.com/evennia/evennia.git
synced 2026-03-20 14:56:30 +01:00
Added some more instructions to the Limbo room desc, telling people they should log out and create a new, non-admin account at the login screen in order to play the tutorial_world properly.
This commit is contained in:
parent
13b3d61b42
commit
3e73529b96
1 changed files with 5 additions and 6 deletions
|
|
@ -72,12 +72,11 @@ def create_objects():
|
|||
room_typeclass = settings.BASE_ROOM_TYPECLASS
|
||||
limbo_obj = create.create_object(room_typeclass, _('Limbo'))
|
||||
limbo_obj.id = 2
|
||||
string = " Welcome to your new {wEvennia{n-based game."
|
||||
string += " From here you are ready to begin development."
|
||||
string += " If you should need help or would like to participate"
|
||||
string += " in community discussions, visit http://evennia.com."
|
||||
string += " If you are logged in as User #1 you can create a"
|
||||
string += " demo/tutorial area with '@batchcommand contrib.tutorial_world.build'."
|
||||
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.",
|
||||
"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)
|
||||
limbo_obj.db.desc = string
|
||||
limbo_obj.save()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue