diff --git a/typeclasses/characters.py b/typeclasses/characters.py index ecfb64c..3a45ca6 100644 --- a/typeclasses/characters.py +++ b/typeclasses/characters.py @@ -41,7 +41,7 @@ READ_LETTER = """You read a letter with an oddly familiar penmanship: - Get and read a book - Have some tea and scones - Oh, I also suggest |wWyldwood|n, a fabulous bar that doesn't open very often, but is quite fun when it does. + Oh, I also suggest checking out |wWyldwood|n, a fabulous bar that doesn't open very often, but is quite fun when it does. I'm here, so join me in a cup of tea and we can reconnect and reminisce of glorious days gone by, and the utter curiosity that surrounds us. @@ -67,7 +67,6 @@ class Character(Object, GenderCharacter, ContribRPCharacter): if self.dbref != "#1": self.create_letter() - TutorBird.do_start_tutorial(self) def at_post_puppet(self, **kwargs): if self.db.visited: @@ -76,6 +75,7 @@ class Character(Object, GenderCharacter, ContribRPCharacter): else: self.db.visited = True self.db.tutorstate = 0 + TutorBird.do_start_tutorial(self) self.msg(INTRO) self.account.db._last_puppet = self