mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
13 lines
350 B
Python
13 lines
350 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from toontown.estate.DistributedPlantBaseAI import DistributedPlantBaseAI
|
||
|
|
||
|
class DistributedGagTreeAI(DistributedPlantBaseAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedGagTreeAI")
|
||
|
|
||
|
def setWilted(self, todo0):
|
||
|
pass
|
||
|
|
||
|
def requestHarvest(self):
|
||
|
pass
|
||
|
|