From 9ea24f292843dd0527737f2868d7e31dd0548981 Mon Sep 17 00:00:00 2001 From: core Date: Tue, 28 Nov 2023 10:15:37 -0500 Subject: [PATCH] reduce thruster strength a tad --- server/src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/src/main.rs b/server/src/main.rs index de459fb61f04cd6eb3d3fb3f45813a460677a2a9..83c90c933a1710c7c8ecaeaf077b7f4901da5d54 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -399,12 +399,12 @@ fn player_input_update( fmul_bottom_left_thruster = fmul_bottom_left_thruster.clamp(-1.0, 1.0); fmul_bottom_right_thruster = fmul_bottom_right_thruster.clamp(-1.0, 1.0); if player.input.up { - fmul_bottom_left_thruster -= 100.0; - fmul_bottom_right_thruster -= 100.0; + fmul_bottom_left_thruster -= 60.0; + fmul_bottom_right_thruster -= 60.0; } if player.input.down { - fmul_top_left_thruster += 100.0; - fmul_top_right_thruster += 100.0; + fmul_top_left_thruster += 60.0; + fmul_top_right_thruster += 60.0; } let rot = transform.rotation.to_euler(EulerRot::ZYX).0;