mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-24 04:02:40 -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:
|
# Developer options:
|
||||||
show-population #t
|
show-population #t
|
||||||
force-skip-tutorial #t
|
|
||||||
want-instant-parties #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]))
|
self.notify.debug('ParentPos = %.2f %.2f %.2f' % (parentPos[0], parentPos[1], parentPos[2]))
|
||||||
|
|
||||||
def storeSkipTutorialRequest(self):
|
def storeSkipTutorialRequest(self):
|
||||||
if base.forceSkipTutorial:
|
base.cr.skipTutorialRequest = self.requestingSkipTutorial
|
||||||
base.cr.skipTutorialRequest = True
|
|
||||||
else:
|
|
||||||
base.cr.skipTutorialRequest = self.requestingSkipTutorial
|
|
||||||
|
|
||||||
def __isFirstTime(self):
|
def __isFirstTime(self):
|
||||||
if not self.makeAToon.nameList or self.makeAToon.warp:
|
if self.makeAToon.warp:
|
||||||
self.__createAvatar()
|
self.__createAvatar()
|
||||||
else:
|
else:
|
||||||
self.promptTutorial()
|
self.promptTutorial()
|
||||||
|
|
Loading…
Reference in a new issue