22 lines
693 B
Python
22 lines
693 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from otp.distributed.DistributedDistrictAI import DistributedDistrictAI
|
|
|
|
class ToontownDistrictAI(DistributedDistrictAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownDistrictAI')
|
|
|
|
def __init__(self, air):
|
|
DistributedDistrictAI.__init__(self, air)
|
|
self.ahnnLog = False
|
|
|
|
def allowAHNNLog(self, ahnnLog):
|
|
self.ahnnLog = ahnnLog
|
|
|
|
def d_allowAHNNLog(self, ahnnLog):
|
|
self.sendUpdate('allowAHNNLog', [ahnnLog])
|
|
|
|
def b_allowAHNNLog(self, ahnnLog):
|
|
self.allowAHNNLog(ahnnLog)
|
|
self.d_allowAHNNLog(ahnnLog)
|
|
|
|
def getAllowAHNNLog(self):
|
|
return self.ahnnLog
|