From 8e2a6d96e7fae1f7c10d129003a56f34ce03183f Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 20 Jul 2021 22:05:48 +0200 Subject: [PATCH] Increased the jump height a bit. --- game/player/Body.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/player/Body.gd b/game/player/Body.gd index acd67f23..77b958c0 100644 --- a/game/player/Body.gd +++ b/game/player/Body.gd @@ -49,7 +49,7 @@ const ACCEL : float = 100.0 const DEACCEL : float = 100.0 #jumping -var jump_height = 7 +var jump_height = 7.6 var has_contact : bool = false var double_jumped : bool = false