After the bar, wake up in the meadow
This commit is contained in:
parent
9c607157cb
commit
72c25bb33f
2 changed files with 4 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ class CmdSay(MuxCommand):
|
|||
"""
|
||||
|
||||
key = "say"
|
||||
aliases = ["speak", "shout", "yell", "exclaim", "scream", "ask", "reply", "respond", "\"", "'"]
|
||||
aliases = ["says", "speak", "shout", "yell", "exclaim", "scream", "ask", "reply", "respond", "\"", "'"]
|
||||
priority = 0
|
||||
locks = "cmd:all()"
|
||||
rhs_split = ("=")
|
||||
|
|
|
|||
|
|
@ -73,6 +73,9 @@ class Character(Object, GenderCharacter, ContribRPCharacter):
|
|||
def at_post_puppet(self, **kwargs):
|
||||
if self.db.visited:
|
||||
self.msg(f"""\n“Welcome back, {self.key.capitalize()}.”\n""")
|
||||
if self.location.key == "Wyldwood Bar":
|
||||
self.msg("You wake up in a meadow with a strange dream of a bar...")
|
||||
self.location = self.global_search("Frog Meadow")
|
||||
self.execute_cmd("look")
|
||||
else:
|
||||
self.db.visited = True
|
||||
|
|
|
|||
Loading…
Reference in a new issue