Skip to content

Commit 1b65039

Browse files
author
LocalIdentity
committed
Fix Grafts disabling Eternity Shroud ignore resistance mod
Forgot to add grafts as a item type to exclude from the item count checks
1 parent 4304570 commit 1b65039

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Modules/CalcSetup.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ function calcs.initEnv(build, mode, override, specEnv)
10991099
if item.classRestriction then
11001100
env.itemModDB.conditions[item.title:gsub(" ", "")] = item.classRestriction
11011101
end
1102-
if item.type ~= "Jewel" and item.type ~= "Flask" and item.type ~= "Tincture" then
1102+
if item.type ~= "Jewel" and item.type ~= "Flask" and item.type ~= "Tincture" and item.type ~= "Graft" then
11031103
-- Update item counts
11041104
local key
11051105
if item.rarity == "UNIQUE" or item.rarity == "RELIC" then

0 commit comments

Comments
 (0)