From 7785a33b5ebffeb58d3541cc0bb05850a50fa966 Mon Sep 17 00:00:00 2001 From: AllyJaxx Date: Sun, 11 May 2025 15:46:49 -0400 Subject: [PATCH] missed an edge case #fuck --- FModel/Creator/Bases/FN/BaseIconStats.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FModel/Creator/Bases/FN/BaseIconStats.cs b/FModel/Creator/Bases/FN/BaseIconStats.cs index 5c1240c5..c7c1e485 100644 --- a/FModel/Creator/Bases/FN/BaseIconStats.cs +++ b/FModel/Creator/Bases/FN/BaseIconStats.cs @@ -137,12 +137,12 @@ public class BaseIconStats : BaseIcon _statistics.Add(new IconStat(Utils.GetLocalizedResource("", "6EA26D1A4252034FBD869A90F9A6E49A", "Reload Time"), reloadTime, 10)); } - if (overheatCooldown != 0f && clipSize > 999f || clipSize == 0f) + if (overheatCooldown != 0f && clipSize > 999f || overheatCooldown != 0f && clipSize == 0f) { _statistics.Add(new IconStat("Overheat Cooldown", overheatCooldown, 5)); } - if (heatMax != 0f && heatPerShot != 0f && clipSize > 999f || clipSize == 0f) + if (heatMax != 0f && heatPerShot != 0f && clipSize > 999f || heatMax != 0f && heatPerShot != 0f && clipSize == 0f) { _statistics.Add(new IconStat("Shots to Overheat", Math.Ceiling(heatMax / heatPerShot), 80)); }