mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
28 lines
842 B
Python
28 lines
842 B
Python
|
from panda3d.core import *
|
||
|
from toontown.toonbase import ToontownGlobals
|
||
|
from direct.distributed import DistributedObject
|
||
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from toontown.toonbase import TTLocalizer
|
||
|
|
||
|
class LobbyManager(DistributedObject.DistributedObject):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('LobbyManager')
|
||
|
SetFactoryZoneMsg = 'setFactoryZone'
|
||
|
|
||
|
def __init__(self, cr):
|
||
|
DistributedObject.DistributedObject.__init__(self, cr)
|
||
|
|
||
|
def generate(self):
|
||
|
self.notify.debug('generate')
|
||
|
DistributedObject.DistributedObject.generate(self)
|
||
|
|
||
|
def disable(self):
|
||
|
self.notify.debug('disable')
|
||
|
self.ignoreAll()
|
||
|
DistributedObject.DistributedObject.disable(self)
|
||
|
|
||
|
def getSuitDoorOrigin(self):
|
||
|
return 1
|
||
|
|
||
|
def getBossLevel(self):
|
||
|
return 0
|