From 4a1b2887a8805fa1c6db1252e655fa787a1817fa Mon Sep 17 00:00:00 2001 From: Arthur Date: Sat, 10 Dec 2022 01:22:07 +0100 Subject: [PATCH] Update Cannon.gd Comments --- Cannon.gd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cannon.gd b/Cannon.gd index 6fe3811..c063111 100644 --- a/Cannon.gd +++ b/Cannon.gd @@ -13,6 +13,7 @@ func _ready(): #TODO: FINISH func interact(): if currentState == STATE.INACTIVE: + #TODO: RELOADING if currentStashValue < maxStashValue: currentState = STATE.RELOADING currentStashValue = maxStashValue @@ -23,6 +24,6 @@ func interact(): func _on_signal_shooting(): if currentStashValue == 1: currentState = STATE.SHOOTING - #TODO shooting + #TODO: SHOOTING currentState = STATE.INACTIVE pass