From 9f1442f20e48a04aeaba567b44a2e84c6d0c76f6 Mon Sep 17 00:00:00 2001 From: core Date: Sat, 22 Nov 2025 21:37:46 -0500 Subject: [PATCH] feat: additional debug information in joint-debug F6 forgot a spot --- crates/unified/src/client/ship/thrusters.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/unified/src/client/ship/thrusters.rs b/crates/unified/src/client/ship/thrusters.rs index a2bfaedb1ac419cfeb4e604735643f7b6d2431d4..476b504e203e8d04f209072625daa5048e34546f 100644 --- a/crates/unified/src/client/ship/thrusters.rs +++ b/crates/unified/src/client/ship/thrusters.rs @@ -18,7 +18,8 @@ pub fn client_thrusters_plugin(app: &mut App) { app .insert_resource(ThrusterDebugRes(false)) .insert_resource(ThrustSolution { - thrusters_on: BTreeSet::default() + thrusters_on: BTreeSet::default(), + converged: true, }) .add_systems(Update, draw_thruster_debug) .add_systems(Update, solve_thrust);