Fix unholy blight in DKs

Signed-off-by: sanctum32 <andriuspel@gmail.com>
This commit is contained in:
LeFroid 2015-02-03 14:54:33 +00:00 committed by Antz
parent 6578d0c7e1
commit 393d4f19a8

View file

@ -2821,6 +2821,13 @@ SpellAuraProcResult Unit::HandleDummyAuraProc(Unit* pVictim, uint32 damage, Aura
// triggered_spell_id in spell data
break;
}
// Unholy Blight
if (dummySpell->SpellIconID == 1494) // id = 49194 in dbc, spelliconid = 1494
{
basepoints[0] = int32(damage / 10); // Deal 10% of death coil damage
triggered_spell_id = 50536;
break;
}
break;
}
default: