mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
10 lines
455 B
Python
10 lines
455 B
Python
from ElevatorConstants import *
|
|
import DistributedBossElevatorAI
|
|
|
|
class DistributedCJElevatorAI(DistributedBossElevatorAI.DistributedBossElevatorAI):
|
|
|
|
def __init__(self, air, bldg, zone, antiShuffle = 0, minLaff = 0):
|
|
DistributedBossElevatorAI.DistributedBossElevatorAI.__init__(self, air, bldg, zone, antiShuffle=antiShuffle, minLaff=minLaff)
|
|
self.type = ELEVATOR_CJ
|
|
self.countdownTime = ElevatorData[self.type]['countdown']
|
|
|