mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
Allow first time players to choose if they want to do the Toontorial
This commit is contained in:
parent
f093b5574c
commit
970c945fda
2 changed files with 2 additions and 6 deletions
|
@ -37,5 +37,4 @@ want-glove-npc #t
|
|||
|
||||
# Developer options:
|
||||
show-population #t
|
||||
force-skip-tutorial #t
|
||||
want-instant-parties #t
|
|
@ -994,13 +994,10 @@ class NameShop(StateData.StateData):
|
|||
self.notify.debug('ParentPos = %.2f %.2f %.2f' % (parentPos[0], parentPos[1], parentPos[2]))
|
||||
|
||||
def storeSkipTutorialRequest(self):
|
||||
if base.forceSkipTutorial:
|
||||
base.cr.skipTutorialRequest = True
|
||||
else:
|
||||
base.cr.skipTutorialRequest = self.requestingSkipTutorial
|
||||
base.cr.skipTutorialRequest = self.requestingSkipTutorial
|
||||
|
||||
def __isFirstTime(self):
|
||||
if not self.makeAToon.nameList or self.makeAToon.warp:
|
||||
if self.makeAToon.warp:
|
||||
self.__createAvatar()
|
||||
else:
|
||||
self.promptTutorial()
|
||||
|
|
Loading…
Reference in a new issue