diff --git a/src/Modules/Build.lua b/src/Modules/Build.lua index 244ec6a8e7..4263279900 100644 --- a/src/Modules/Build.lua +++ b/src/Modules/Build.lua @@ -1861,7 +1861,7 @@ function buildMode:CompareStatList(tooltip, statList, actor, baseOutput, compare local statVal1 = compareOutput[statData.stat] or 0 local statVal2 = baseOutput[statData.stat] or 0 local diff = statVal1 - statVal2 - if statData.stat == "FullDPS" and not GlobalCache.useFullDPS and not self.viewMode == "TREE" then + if statData.stat == "FullDPS" and not GlobalCache.useFullDPS and self.viewMode ~= "TREE" then diff = 0 end if (diff > 0.001 or diff < -0.001) and (not statData.condFunc or statData.condFunc(statVal1,compareOutput) or statData.condFunc(statVal2,baseOutput)) then