From 50d245c636339bbeb285f1fe4bcd8b3f74695184 Mon Sep 17 00:00:00 2001 From: Nicholas Ciechanowski Date: Sat, 29 Nov 2025 17:52:47 +1100 Subject: [PATCH] fix: nodeId check for cluster nodes nodeId is out of scope of this loop and is always nil --- src/Classes/CalcsTab.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Classes/CalcsTab.lua b/src/Classes/CalcsTab.lua index 281c8178cd..094c7c155b 100644 --- a/src/Classes/CalcsTab.lua +++ b/src/Classes/CalcsTab.lua @@ -573,7 +573,7 @@ function CalcsTabClass:PowerBuilder() node.power = {} end wipeTable(node.power) - if not node.alloc and node.modKey ~= "" and not self.mainEnv.grantedPassives[nodeId] then + if not node.alloc and node.modKey ~= "" and not self.mainEnv.grantedPassives[node.id] then if not cache[node.modKey] then cache[node.modKey] = calcFunc({ addNodes = { [node] = true } }, useFullDPS) end