mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
Fix every boarding group
This commit is contained in:
parent
3ff23f8656
commit
2b4fc260dc
4 changed files with 4 additions and 4 deletions
|
@ -73,7 +73,7 @@ class DistributedBossElevator(DistributedElevatorExt.DistributedElevatorExt):
|
|||
def setBossOfficeZoneForce(self, zoneId):
|
||||
place = self.cr.playGame.getPlace()
|
||||
if place:
|
||||
place.fsm.request('elevator', [self, 1])
|
||||
place.fsm.request('elevator', [self])
|
||||
hoodId = self.cr.playGame.hood.hoodId
|
||||
doneStatus = {'loader': 'cogHQLoader',
|
||||
'where': 'cogHQBossBattle',
|
||||
|
|
|
@ -152,7 +152,7 @@ class DistributedCogKart(DistributedElevatorExt.DistributedElevatorExt):
|
|||
def setCountryClubInteriorZoneForce(self, zoneId):
|
||||
place = self.cr.playGame.getPlace()
|
||||
if place:
|
||||
place.fsm.request('elevator', [self, 1])
|
||||
place.fsm.request('elevator', [self])
|
||||
hoodId = self.cr.playGame.hood.hoodId
|
||||
countryClubId = self.countryClubId
|
||||
if bboard.has('countryClubIdOverride'):
|
||||
|
|
|
@ -72,7 +72,7 @@ class DistributedFactoryElevatorExt(DistributedElevatorExt.DistributedElevatorEx
|
|||
def setFactoryInteriorZoneForce(self, zoneId):
|
||||
place = self.cr.playGame.getPlace()
|
||||
if place:
|
||||
place.fsm.request('elevator', [self, 1])
|
||||
place.fsm.request('elevator', [self])
|
||||
hoodId = self.cr.playGame.hood.hoodId
|
||||
doneStatus = {'loader': 'cogHQLoader',
|
||||
'where': 'factoryInterior',
|
||||
|
|
|
@ -81,7 +81,7 @@ class DistributedLawOfficeElevatorExt(DistributedElevatorExt.DistributedElevator
|
|||
def setLawOfficeInteriorZoneForce(self, zoneId):
|
||||
place = self.cr.playGame.getPlace()
|
||||
if place:
|
||||
place.fsm.request('elevator', [self, 1])
|
||||
place.fsm.request('elevator', [self])
|
||||
hoodId = self.cr.playGame.hood.hoodId
|
||||
doneStatus = {'loader': 'cogHQLoader',
|
||||
'where': 'stageInterior',
|
||||
|
|
Loading…
Reference in a new issue