logic tweak

This commit is contained in:
Jake Funke 2019-02-28 00:41:15 +00:00
parent 300b9e8d00
commit 8fd35a5927
1 changed files with 3 additions and 7 deletions

View File

@ -79,11 +79,7 @@ class CursedMenu(object):
def update_options(self):
# Makes sure you can get a new plant if it dies
if self.plant.dead:
if "harvest" not in self.options:
self.options.insert(-1,"harvest")
else:
if self.plant.stage == 5:
if self.plant.dead or self.plant.stage == 5:
if "harvest" not in self.options:
self.options.insert(-1,"harvest")
else: