From 3849b56002ded8e2abe4db21977d27ad7d48a680 Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Tue, 16 Feb 2016 09:21:50 -0800 Subject: [PATCH] you could save when you weren't supposed to. --- desktop/src-common/advent/screens/scene.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src-common/advent/screens/scene.clj b/desktop/src-common/advent/screens/scene.clj index 7c124578..4dceb95a 100644 --- a/desktop/src-common/advent/screens/scene.clj +++ b/desktop/src-common/advent/screens/scene.clj @@ -1494,7 +1494,7 @@ void main () (utils/intersects? (:close entities) [x y]) (screen! scene :on-menu) - (and (utils/intersects? (:save entities) [x y]) (hud-interactable?)) + (and (not (:already-saved? entities)) (utils/intersects? (:save entities) [x y]) (hud-interactable?)) (do (screen! scene :on-save) (assoc entities :already-saved? true))