mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-24 12:12:36 -06:00
Tweak: Outdoor Zone teleport access like Goofy's Speedway
This commit is contained in:
parent
c823ff41e6
commit
510e70df2d
1 changed files with 3 additions and 3 deletions
|
@ -223,10 +223,10 @@ class DistributedToonAI(DistributedPlayerAI.DistributedPlayerAI, DistributedSmoo
|
||||||
hoodsVisited.append(hood)
|
hoodsVisited.append(hood)
|
||||||
self.b_setHoodsVisited(hoodsVisited)
|
self.b_setHoodsVisited(hoodsVisited)
|
||||||
|
|
||||||
if zoneId == ToontownGlobals.GoofySpeedway:
|
if zoneId == ToontownGlobals.GoofySpeedway or zoneId == ToontownGlobals.OutdoorZone:
|
||||||
tpAccess = self.getTeleportAccess()
|
tpAccess = self.getTeleportAccess()
|
||||||
if ToontownGlobals.GoofySpeedway not in tpAccess:
|
if zoneId not in tpAccess:
|
||||||
tpAccess.append(ToontownGlobals.GoofySpeedway)
|
tpAccess.append(zoneId)
|
||||||
self.b_setTeleportAccess(tpAccess)
|
self.b_setTeleportAccess(tpAccess)
|
||||||
|
|
||||||
def sendDeleteEvent(self):
|
def sendDeleteEvent(self):
|
||||||
|
|
Loading…
Reference in a new issue