]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Disable MachineGun spread damage multipliers when set to 0 for compatibility
authorMario <mario.mario@y7mail.com>
Sun, 26 Jan 2025 07:53:19 +0000 (07:53 +0000)
committerbones_was_here <bones_was_here@xonotic.au>
Sun, 26 Jan 2025 07:53:19 +0000 (07:53 +0000)
qcsrc/common/weapons/weapon/machinegun.qc

index 89d3692a1dc5c4c9f2f5f605812f624398ba3a99..b9d45931345a72f926f1643e24f5f1908601b188 100644 (file)
@@ -49,10 +49,11 @@ float MachineGun_Heat(float spread_accum)
        // example where low end has halved damage and high end has tripled damage:
        // with 50% spread accumulation: heat = (0.5 * 0.5) + (0.5 * 3) = 0.25 + 1.5 = 1.75 damage multiplier
        // with 90% spread accumulation: heat = (0.1 * 0.5) + (0.9 * 3) = 0.05 + 2.7 = 2.75 damage multiplier
-       float heat = (coldMultiplierApplicationPercent * WEP_CVAR(WEP_MACHINEGUN, spread_cold_damagemultiplier))
-                  + (heatMultiplierApplicationPercent * WEP_CVAR(WEP_MACHINEGUN, spread_heat_damagemultiplier));
-
-       return heat;
+       // NOTE: multipliers do not apply when unset for compatibility
+       float cold_multiplier = WEP_CVAR(WEP_MACHINEGUN, spread_cold_damagemultiplier);
+       float heat_multiplier = WEP_CVAR(WEP_MACHINEGUN, spread_heat_damagemultiplier);
+       return (cold_multiplier ? coldMultiplierApplicationPercent * cold_multiplier : coldMultiplierApplicationPercent)
+            + (heat_multiplier ? heatMultiplierApplicationPercent * heat_multiplier : heatMultiplierApplicationPercent);
 }
 
 void W_MachineGun_Attack(Weapon thiswep, int deathtype, entity actor, .entity weaponentity)