[git] Strangling Shot interaction with Quiver of the Sun
Posted: Wed Jul 24, 2013 2:12 am
If you're wielding the Quiver of the Sun and use the new Strangling Shot skill in the Archery Excellence tree, it will only hit the first enemy targeted even though you're using piercing arrows.
In excellence.lua, the lines:
should be:
rather than acquiring the target twice.
In excellence.lua, the lines:
Code: Select all
local tg = self:getTalentTarget(t)
local targets = self:archeryAcquireTargets(tg, {one_shot=true})
if not targets then return end
self:archeryShoot(targets, t, tg, {mult=self:combatTalentWeaponDamage(t, 0.9, 1.7)})
return true
Code: Select all
local targets = self:archeryAcquireTargets(nil, {one_shot=true})
if not targets then return end
self:archeryShoot(targets, t, nil, {mult=self:combatTalentWeaponDamage(t, 0.9, 1.7)})
return true