From 5d9bdfeaa071a4373df58868e17c97db870ea22e Mon Sep 17 00:00:00 2001 From: ViralReaction <136116069+ViralReaction@users.noreply.github.com> Date: Tue, 20 Feb 2024 16:18:35 -0700 Subject: [PATCH] Increase error from darkness shooting * Doubles error from darkness/blindfiring --- Source/CombatExtended/CombatExtended/ShiftVecReport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/CombatExtended/CombatExtended/ShiftVecReport.cs b/Source/CombatExtended/CombatExtended/ShiftVecReport.cs index 3d5b174096..5d53b95963 100644 --- a/Source/CombatExtended/CombatExtended/ShiftVecReport.cs +++ b/Source/CombatExtended/CombatExtended/ShiftVecReport.cs @@ -51,7 +51,7 @@ public float enviromentShift { if (enviromentShiftInt < 0) { - enviromentShiftInt = ((blindFiring ? 1 : lightingShift) * 3.5f + weatherShift * 1.5f) * CE_Utility.LightingRangeMultiplier(shotDist) + smokeDensity; + enviromentShiftInt = ((blindFiring ? 1 : lightingShift) * 7f + weatherShift * 1.5f) * CE_Utility.LightingRangeMultiplier(shotDist) + smokeDensity; } return enviromentShiftInt; }