Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Classes/Item.lua
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,10 @@ function ItemClass:ParseRaw(raw, rarity, highQuality)
self.pendingAffixList = { }
local backupAffixList = { }
for modId, modData in pairs(self.affixes) do
-- these can produce false positives, and only ever exist on the monk glove base
if modId:match("^HandWraps") and not self.name:match("Fists of Stone") then
goto modContinue
end
if modData.affix == modName then
if self:GetModSpawnWeight(modData) > 0 then
if modData.type == "Prefix" then
Expand All @@ -458,6 +462,7 @@ function ItemClass:ParseRaw(raw, rarity, highQuality)
end
end
end
::modContinue::
end
if #self.pendingAffixList == 0 and #backupAffixList > 0 then
self.pendingAffixList = backupAffixList
Expand Down
Loading