Fix bug with character generation and the tutor bird
This commit is contained in:
parent
568ff30b54
commit
db53ba62a3
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue