mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 09:17:54 +00:00
12 lines
387 B
Python
12 lines
387 B
Python
# File: D (Python 2.4)
|
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
from toontown.building.DistributedElevatorExtAI import DistributedElevatorExtAI
|
|
|
|
class DistributedCogdoElevatorExtAI(DistributedElevatorExtAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedCogdoElevatorExtAI')
|
|
|
|
def _createInterior(self):
|
|
self.bldg.createCogdoInterior()
|
|
|
|
|