oldschool-toontown/toontown/building/DistributedCJElevatorAI.py
2019-12-30 01:07:56 -05:00

9 lines
452 B
Python

from .ElevatorConstants import *
from . 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=0)
self.type = ELEVATOR_CJ
self.countdownTime = ElevatorData[self.type]['countdown']