mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
19 lines
638 B
Python
Executable file
19 lines
638 B
Python
Executable file
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed import DistributedObject
|
|
from otp.distributed import DistributedDistrict
|
|
|
|
class ToontownDistrict(DistributedDistrict.DistributedDistrict):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownDistrict')
|
|
|
|
def __init__(self, cr):
|
|
DistributedDistrict.DistributedDistrict.__init__(self, cr)
|
|
self.avatarCount = 0
|
|
self.newAvatarCount = 0
|
|
self.invasionStatus = 0
|
|
self.suitStatus = ''
|
|
|
|
def allowAHNNLog(self, allow):
|
|
self.allowAHNN = allow
|
|
|
|
def getAllowAHNNLog(self):
|
|
return self.allowAHNN
|