From afd796ce90d803d63b882d5cf15b75d509740edb Mon Sep 17 00:00:00 2001 From: Explooosion-code <61145047+Explooosion-code@users.noreply.github.com> Date: Thu, 19 Sep 2024 14:03:24 +0200 Subject: [PATCH] chore(extra-natives/five): Remove debug traces --- code/components/extra-natives-five/src/VehicleExtraNatives.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/components/extra-natives-five/src/VehicleExtraNatives.cpp b/code/components/extra-natives-five/src/VehicleExtraNatives.cpp index 366950ae82..9f4872d232 100644 --- a/code/components/extra-natives-five/src/VehicleExtraNatives.cpp +++ b/code/components/extra-natives-five/src/VehicleExtraNatives.cpp @@ -1533,14 +1533,11 @@ static HookFunction initFunction([]() { weight = 0.0; } - trace("Setting weight %.6f was %.6f\n", weight, *PassengerMassPtr); *PassengerMassPtr = weight; }); fx::ScriptEngine::RegisterNativeHandler("GET_GLOBAL_PASSENGER_MASS_MULTIPLIER", [](fx::ScriptContext& context) { - trace("Weight is %.6f\n", *PassengerMassPtr); - context.SetResult(*PassengerMassPtr); });