Skip to content
Snippets Groups Projects
Commit 2f8d6b61 authored by DarkGod's avatar DarkGod
Browse files

Fixed Attune Mindstar exploding when used with a shield

parent 5d7b1a6b
No related branches found
No related tags found
No related merge requests found
......@@ -2479,7 +2479,7 @@ function _M:hasOffWeaponType(type)
if not self:getInven("OFFHAND") then return end
local weapon = self:getInven("OFFHAND")[1]
if not weapon then return nil end
if type and weapon.combat.talented ~= type then return nil end
if type and (weapon.special_combat or weapon.combat).talented ~= type then return nil end
return weapon
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment