[10351] For item 50351 and 50706 fixed work in case no offhand weapon.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
dpedroia15 2010-08-12 05:58:37 +04:00 committed by VladimirMangos
parent ea93dd13cf
commit 64fe2cf3ed
2 changed files with 2 additions and 2 deletions

View file

@ -2015,7 +2015,7 @@ SpellAuraProcResult Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura
RemoveAurasDueToSpell(71432); // Mote of Anger
// Manifest Anger (main hand/off hand)
CastSpell(pVictim, roll_chance_i(50) ? 71433 : 71434, true);
CastSpell(pVictim, !haveOffhandWeapon() || roll_chance_i(50) ? 71433 : 71434, true);
return SPELL_AURA_PROC_OK;
}
else