mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
gardening stuff
This commit is contained in:
parent
662acabe1f
commit
a5fcaa8426
2 changed files with 14 additions and 3 deletions
|
@ -215,9 +215,8 @@ class DistributedEstateAI(DistributedObjectAI):
|
|||
DistributedObjectAI.announceGenerate(self)
|
||||
for index, garden in self.__pendingGardens.items():
|
||||
started = garden[0]
|
||||
if started:
|
||||
self.gardenManager.handleSingleGarden(self.toons[index], garden[1:])
|
||||
self.placeStarterGarden(self.toons[index])
|
||||
self.gardenManager.handleSingleGarden(self.toons[index], garden[1:])
|
||||
self.placeStarterGarden(self.toons[index])
|
||||
self.__pendingGardens = {}
|
||||
|
||||
def destroy(self):
|
||||
|
|
|
@ -7,15 +7,27 @@ class DistributedLawnDecorAI(DistributedNodeAI):
|
|||
def setPlot(self, todo0):
|
||||
pass
|
||||
|
||||
def getPlot(self, todo0):
|
||||
pass
|
||||
|
||||
def setHeading(self, todo0):
|
||||
pass
|
||||
|
||||
def getHeading(self, todo0):
|
||||
pass
|
||||
|
||||
def setPosition(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def getPosition(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setOwnerIndex(self, todo0):
|
||||
pass
|
||||
|
||||
def getOwnerIndex(self, todo1):
|
||||
pass
|
||||
|
||||
def plotEntered(self):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue