2019-11-02 17:27:54 -05:00
|
|
|
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 *
|
2019-12-30 00:07:56 -06:00
|
|
|
from . import FactoryExterior
|
2019-11-02 17:27:54 -05:00
|
|
|
|
|
|
|
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)
|