gardening stuff

This commit is contained in:
Zach 2015-03-12 22:06:36 -05:00
parent 662acabe1f
commit a5fcaa8426
2 changed files with 14 additions and 3 deletions

View file

@ -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):

View file

@ -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