From a5fcaa8426aa65784a08ef3b135d7b4795d26701 Mon Sep 17 00:00:00 2001 From: Zach Date: Thu, 12 Mar 2015 22:06:36 -0500 Subject: [PATCH] gardening stuff --- toontown/estate/DistributedEstateAI.py | 5 ++--- toontown/estate/DistributedLawnDecorAI.py | 12 ++++++++++++ 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/toontown/estate/DistributedEstateAI.py b/toontown/estate/DistributedEstateAI.py index 96e6bb7c..57043889 100644 --- a/toontown/estate/DistributedEstateAI.py +++ b/toontown/estate/DistributedEstateAI.py @@ -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): diff --git a/toontown/estate/DistributedLawnDecorAI.py b/toontown/estate/DistributedLawnDecorAI.py index eb8dbd08..bedeed6d 100644 --- a/toontown/estate/DistributedLawnDecorAI.py +++ b/toontown/estate/DistributedLawnDecorAI.py @@ -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