mirror of
https://github.com/evennia/evennia.git
synced 2026-03-29 12:07:17 +02:00
Fixed erroneous alias-assigments in tutorial_world that caused tracebacks. Resolves Issue 423.
This commit is contained in:
parent
0a42b73824
commit
839a78ca8d
5 changed files with 12 additions and 32 deletions
|
|
@ -559,7 +559,7 @@ class CrumblingWall(TutorialObject, Exit):
|
|||
"called when the object is first created."
|
||||
super(CrumblingWall, self).at_object_creation()
|
||||
|
||||
self.aliases = ["secret passage", "passage", "crack", "opening", "secret door"]
|
||||
self.aliases.add(["secret passage", "passage", "crack", "opening", "secret door"])
|
||||
# this is assigned first when pushing button, so assign this at creation time!
|
||||
|
||||
self.db.destination = 2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue