From c0852dcc68cd07864d740bcf295ed95cb9ec3297 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sat, 28 Sep 2024 13:47:58 +0200 Subject: [PATCH] Remove debug log from movement speed patch --- .../InfectionFreeZone/InfectionFreeZone.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Projects/InfectionFreeZone/InfectionFreeZone/InfectionFreeZone.cs b/Projects/InfectionFreeZone/InfectionFreeZone/InfectionFreeZone.cs index 7da256e..947862f 100644 --- a/Projects/InfectionFreeZone/InfectionFreeZone/InfectionFreeZone.cs +++ b/Projects/InfectionFreeZone/InfectionFreeZone/InfectionFreeZone.cs @@ -183,11 +183,11 @@ namespace InfectionFreeZone { if (__instance.gameObject.name != "Human(Clone)") return; - if (Main.debug.Value) - Console.WriteLine($"Human movement speed is {__result}"); + // if (Main.debug.Value) + // Console.WriteLine($"Human movement speed is {__result}"); __result *= Main.humanMovementSpeedMultiplier.Value; - if (Main.debug.Value) - Console.WriteLine($"Human movement speed modified to {__result}"); + // if (Main.debug.Value) + // Console.WriteLine($"Human movement speed modified to {__result}"); } } } \ No newline at end of file