10 lines
452 B
Python
10 lines
452 B
Python
|
from ElevatorConstants import *
|
||
|
import DistributedBossElevatorAI
|
||
|
|
||
|
class DistributedCFOElevatorAI(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_CFO
|
||
|
self.countdownTime = ElevatorData[self.type]['countdown']
|