mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-03-15 13:35:08 +00:00
fix(Core/Spells): Fix Explosive Trap crit bonus multiplier (#24931)
Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user