Skip to content

Commit 0f522fe

Browse files
authored
FIX: full dps visual bug on gem dropdown (#8087)
1 parent 611cc90 commit 0f522fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Modules/Build.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1861,7 +1861,7 @@ function buildMode:CompareStatList(tooltip, statList, actor, baseOutput, compare
18611861
local statVal1 = compareOutput[statData.stat] or 0
18621862
local statVal2 = baseOutput[statData.stat] or 0
18631863
local diff = statVal1 - statVal2
1864-
if statData.stat == "FullDPS" and not GlobalCache.useFullDPS and not self.viewMode == "TREE" then
1864+
if statData.stat == "FullDPS" and not GlobalCache.useFullDPS and self.viewMode ~= "TREE" then
18651865
diff = 0
18661866
end
18671867
if (diff > 0.001 or diff < -0.001) and (not statData.condFunc or statData.condFunc(statVal1,compareOutput) or statData.condFunc(statVal2,baseOutput)) then

0 commit comments

Comments
 (0)