Fixed hunter auto attack.

This commit is contained in:
hondacrx
2021-08-09 14:40:58 -04:00
parent 4983fdef61
commit 9e7116f4de
+2 -1
View File
@@ -2433,8 +2433,9 @@ namespace Game.Spells
// multiple weapon dmg effect workaround
// execute only the last weapon damage
// and handle all effects at once
foreach (SpellEffectInfo effect in m_spellInfo.GetEffects())
for (var j = effIndex + 1; j < SpellConst.MaxEffects; ++j)
{
var effect = m_spellInfo.GetEffect(j);
if (effect == null)
continue;