From d427fa82f1bb77b322603a02333d768459e69ba5 Mon Sep 17 00:00:00 2001 From: Arthur Date: Sat, 10 Dec 2022 03:20:51 +0100 Subject: [PATCH] Update Storage.gd --- scripts/Modules/Storage.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Modules/Storage.gd b/scripts/Modules/Storage.gd index 54f8ac7..baf1804 100644 --- a/scripts/Modules/Storage.gd +++ b/scripts/Modules/Storage.gd @@ -14,10 +14,10 @@ func _ready(): currentStashValue = 0 func interact(): if currentStashValue >= 1: - --currentStashValue + currentStashValue -= 1 return func _on_signal_storing(): if currentStashValue < maxStashValue: - ++currentStashValue + currentStashValue += 1 return