Skip to content

Commit

Permalink
Fixed another issue with 2H weapons
Browse files Browse the repository at this point in the history
  • Loading branch information
Slackluster committed Apr 6, 2024
1 parent dd5e85e commit c5ebd51
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,11 @@ function api.DoTheThing(msg)

if comboIlv > maxIlv then
maxIlv = comboIlv
bestCombo = { weapon1, weapon2 }
if weapon1["slot"] == 1617 then
bestCombo = { weapon1 }
else
bestCombo = { weapon1, weapon2 }
end
end
end
end
Expand Down

0 comments on commit c5ebd51

Please sign in to comment.