From 3b802dc93127438a5cef808931d083f9f53ee271 Mon Sep 17 00:00:00 2001 From: Jake Funke Date: Sun, 11 Mar 2018 15:51:11 -0700 Subject: [PATCH] Fixed water points bug --- botany.py | 1 + 1 file changed, 1 insertion(+) diff --git a/botany.py b/botany.py index d9d8689..e7587bb 100755 --- a/botany.py +++ b/botany.py @@ -251,6 +251,7 @@ class Plant(object): self.watered_timestamp = latest_visitor_timestamp self.time_delta_watered = int(time.time()) - self.watered_timestamp if self.time_delta_watered <= (24 * 3600): + self.watered_24h = True return True else: self.watered_24h = False