logic tweak
parent
300b9e8d00
commit
8fd35a5927
|
@ -79,11 +79,7 @@ class CursedMenu(object):
|
||||||
|
|
||||||
def update_options(self):
|
def update_options(self):
|
||||||
# Makes sure you can get a new plant if it dies
|
# Makes sure you can get a new plant if it dies
|
||||||
if self.plant.dead:
|
if self.plant.dead or self.plant.stage == 5:
|
||||||
if "harvest" not in self.options:
|
|
||||||
self.options.insert(-1,"harvest")
|
|
||||||
else:
|
|
||||||
if self.plant.stage == 5:
|
|
||||||
if "harvest" not in self.options:
|
if "harvest" not in self.options:
|
||||||
self.options.insert(-1,"harvest")
|
self.options.insert(-1,"harvest")
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue