mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
Fix an error with plating statuary.
This commit is contained in:
parent
a06c6a7543
commit
3de77cb7b0
1 changed files with 2 additions and 1 deletions
|
@ -3331,9 +3331,10 @@ class DistributedToonAI(DistributedPlayerAI.DistributedPlayerAI, DistributedSmoo
|
||||||
self.gardenSpecials.append((index, newCount))
|
self.gardenSpecials.append((index, newCount))
|
||||||
self.gardenSpecials.sort()
|
self.gardenSpecials.sort()
|
||||||
self.b_setGardenSpecials(self.gardenSpecials)
|
self.b_setGardenSpecials(self.gardenSpecials)
|
||||||
return
|
return 1
|
||||||
|
|
||||||
self.notify.warning("removing garden item %d that toon doesn't have" % index)
|
self.notify.warning("removing garden item %d that toon doesn't have" % index)
|
||||||
|
return 0
|
||||||
|
|
||||||
def b_setFlowerCollection(self, speciesList, varietyList):
|
def b_setFlowerCollection(self, speciesList, varietyList):
|
||||||
self.setFlowerCollection(speciesList, varietyList)
|
self.setFlowerCollection(speciesList, varietyList)
|
||||||
|
|
Loading…
Reference in a new issue