From ddd90a47de3a50235c8bb342050bee4f07e6ce3c Mon Sep 17 00:00:00 2001 From: swim67667 Date: Wed, 17 Jun 2026 09:47:04 -0400 Subject: [PATCH] Update src/world.c --- src/world.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world.c b/src/world.c index ed95c34..39a1f0e 100644 --- a/src/world.c +++ b/src/world.c @@ -7,7 +7,7 @@ const float scale = 43.7445319335f; const float g = 9.81f * scale; const float PMV = 10000.0*scale; //Player Max Velocity -const float PLAYER_SPEED_FACTOR =1.3f; +const int PLAYER_SPEED_FACTOR =2; const float JUMP_FORCE = 300.0f*scale; const float AIR_DRAG = 0.999f;