From db53ba62a3e70ce67ec7fe9906d6478af44c6405 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Tue, 6 May 2025 22:08:46 -0700 Subject: [PATCH] Fix bug with character generation and the tutor bird --- typeclasses/characters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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