fix(Core/Spells): Fix Explosive Trap crit bonus multiplier (#24931)
Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
parent
7010e680c8
commit
470c075049
1 changed files with 13 additions and 0 deletions
|
|
@ -652,6 +652,19 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||
spellInfo->AttributesEx3 |= SPELL_ATTR3_ALWAYS_HIT;
|
||||
});
|
||||
|
||||
// Explosive Trap Effect
|
||||
ApplySpellFix({
|
||||
13812, // Explosive Trap Effect (Rank 1)
|
||||
14314, // Explosive Trap Effect (Rank 2)
|
||||
14315, // Explosive Trap Effect (Rank 3)
|
||||
27026, // Explosive Trap Effect (Rank 4)
|
||||
49064, // Explosive Trap Effect (Rank 5)
|
||||
49065 // Explosive Trap Effect (Rank 6)
|
||||
}, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->DmgClass = SPELL_DAMAGE_CLASS_MAGIC;
|
||||
});
|
||||
|
||||
// Kill Command
|
||||
// Kill Command, Overpower
|
||||
ApplySpellFix({ 34027, 37529 }, [](SpellInfo* spellInfo)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue