mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 03:35:12 -06:00
16 lines
500 B
Python
16 lines
500 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from otp.avatar import AvatarDetail
|
|
from toontown.pets import DistributedPet
|
|
|
|
class PetDetail(AvatarDetail.AvatarDetail):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('PetDetail')
|
|
|
|
def getDClass(self):
|
|
return 'DistributedPet'
|
|
|
|
def createHolder(self):
|
|
pet = DistributedPet.DistributedPet(base.cr, bFake=True)
|
|
pet.forceAllowDelayDelete()
|
|
pet.generateInit()
|
|
pet.generate()
|
|
return pet
|