Poodletooth-iLand/toontown/building/DistributedCJElevatorAI.py

11 lines
455 B
Python
Raw Normal View History

2015-03-03 16:10:12 -06:00
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']