From 7d6d96e499d13f257c54a9d72c6b3e28fcbe8f4f Mon Sep 17 00:00:00 2001 From: Nikolai Fedorov Date: Thu, 23 Apr 2026 16:18:35 +0300 Subject: [PATCH] shield on spacebar --- scripts/Player.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Player.gd b/scripts/Player.gd index a0b3ca5..413a820 100644 --- a/scripts/Player.gd +++ b/scripts/Player.gd @@ -85,7 +85,7 @@ func _input(event: InputEvent) -> void: func _physics_process(delta: float) -> void: if not is_alive: return - is_shielding = shield_tier > 0 and Input.is_key_pressed(KEY_SHIFT) + is_shielding = shield_tier > 0 and Input.is_key_pressed(KEY_SPACE) _handle_movement(delta) _handle_kick(delta) _handle_iframes(delta)