Fix bug with character generation and the tutor bird

This commit is contained in:
Howard Abrams 2025-05-06 22:08:46 -07:00
parent 568ff30b54
commit db53ba62a3

View file

@ -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