2015-03-03 22:10:12 +00: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
|
2015-06-23 23:11:48 +00:00
|
|
|
from panda3d.core import *
|
2015-03-03 22:10:12 +00:00
|
|
|
import FactoryExterior
|
|
|
|
|
|
|
|
class LawbotOfficeExterior(FactoryExterior.FactoryExterior):
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('LawbotOfficeExterior')
|
|
|
|
|
|
|
|
def enterWalk(self, teleportIn = 0):
|
|
|
|
FactoryExterior.FactoryExterior.enterWalk(self, teleportIn)
|
|
|
|
self.ignore('teleportQuery')
|
|
|
|
base.localAvatar.setTeleportAvailable(0)
|