mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
16 lines
596 B
Python
16 lines
596 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.fsm import ClassicFSM
|
||
|
from direct.fsm import State
|
||
|
from toontown.toonbase import ToontownGlobals
|
||
|
from toontown.building import Elevator
|
||
|
from pandac.PandaModules import *
|
||
|
import FactoryExterior
|
||
|
|
||
|
class BossbotOfficeExterior(FactoryExterior.FactoryExterior):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('LawbotOfficeExterior')
|
||
|
|
||
|
def enterWalk(self, teleportIn = 0):
|
||
|
FactoryExterior.FactoryExterior.enterWalk(self, teleportIn)
|
||
|
self.ignore('teleportQuery')
|
||
|
base.localAvatar.setTeleportAvailable(0)
|