2019-12-30 00:07:56 -06:00
|
|
|
from .ElevatorConstants import *
|
|
|
|
from . import DistributedBossElevatorAI
|
2019-11-02 17:27:54 -05:00
|
|
|
|
|
|
|
class DistributedCJElevatorAI(DistributedBossElevatorAI.DistributedBossElevatorAI):
|
|
|
|
|
|
|
|
def __init__(self, air, bldg, zone, antiShuffle=0, minLaff=0):
|
|
|
|
DistributedBossElevatorAI.DistributedBossElevatorAI.__init__(self, air, bldg, zone, antiShuffle=antiShuffle, minLaff=0)
|
|
|
|
self.type = ELEVATOR_CJ
|
|
|
|
self.countdownTime = ElevatorData[self.type]['countdown']
|