diff --git a/toontown/building/DistributedBossElevator.py b/toontown/building/DistributedBossElevator.py index 7de60736..77571d07 100755 --- a/toontown/building/DistributedBossElevator.py +++ b/toontown/building/DistributedBossElevator.py @@ -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', diff --git a/toontown/coghq/DistributedCogKart.py b/toontown/coghq/DistributedCogKart.py index 6319e012..d7896360 100755 --- a/toontown/coghq/DistributedCogKart.py +++ b/toontown/coghq/DistributedCogKart.py @@ -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'): diff --git a/toontown/coghq/DistributedFactoryElevatorExt.py b/toontown/coghq/DistributedFactoryElevatorExt.py index 903710ef..d398f596 100755 --- a/toontown/coghq/DistributedFactoryElevatorExt.py +++ b/toontown/coghq/DistributedFactoryElevatorExt.py @@ -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', diff --git a/toontown/coghq/DistributedLawOfficeElevatorExt.py b/toontown/coghq/DistributedLawOfficeElevatorExt.py index 8cdac786..bbace6fc 100755 --- a/toontown/coghq/DistributedLawOfficeElevatorExt.py +++ b/toontown/coghq/DistributedLawOfficeElevatorExt.py @@ -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',