mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 09:17:54 +00:00
d7279b7778
This reverts commit d3a352f395
.
23 lines
No EOL
923 B
Python
23 lines
No EOL
923 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
|
|
|
class AccountDateAI(DistributedObjectAI):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("AccountDateAI")
|
|
|
|
def announceGenerate(self):
|
|
DistributedObjectAI.announceGenerate(self)
|
|
|
|
def requestDate(self):
|
|
avId = self.air.getAvatarIdFromSender()
|
|
av = self.air.doId2do.get(avId)
|
|
|
|
if not av:
|
|
return
|
|
|
|
def callback(dclass, fields):
|
|
if dclass is not None and dclass == self.air.dclassesByName['AccountAI'] and fields.has_key('CREATED'):
|
|
self.sendUpdateToAvatarId(avId, 'requestDateResult', [fields.get('CREATED')])
|
|
else:
|
|
self.sendUpdateToAvatarId(avId, 'requestDateResult', [None])
|
|
|
|
self.air.dbInterface.queryObject(self.air.dbId, av.DISLid, callback) |