Tutorial fix

This commit is contained in:
John 2015-05-26 20:12:34 +03:00 committed by Loudrob
parent f024e9b7a6
commit 6573d40c91
2 changed files with 2 additions and 1 deletions

View file

@ -87,7 +87,7 @@ def getWhereName(zoneId, isToon):
where = 'toonInterior' where = 'toonInterior'
elif zoneId in tutorialDict['exteriors']: elif zoneId in tutorialDict['exteriors']:
where = 'street' where = 'street'
elif zoneId == ToontownCentral: elif zoneId == ToontownCentral or zoneId == WelcomeValleyToken:
where = 'playground' where = 'playground'
else: else:
zoneUtilNotify.error('No known zone: ' + str(zoneId)) zoneUtilNotify.error('No known zone: ' + str(zoneId))

View file

@ -179,6 +179,7 @@ HoodHierarchy = {ToontownCentral: (SillyStreet, LoopyLane, PunchlinePlace),
DaisyGardens: (ElmStreet, MapleStreet, OakStreet), DaisyGardens: (ElmStreet, MapleStreet, OakStreet),
DonaldsDreamland: (LullabyLane, PajamaPlace), DonaldsDreamland: (LullabyLane, PajamaPlace),
GoofySpeedway: ()} GoofySpeedway: ()}
WelcomeValleyToken = 0
BossbotHQ = 10000 BossbotHQ = 10000
BossbotLobby = 10100 BossbotLobby = 10100
BossbotCountryClubIntA = 10500 BossbotCountryClubIntA = 10500