fix(Core/Spells): Fix Explosive Trap crit bonus multiplier (#24931)

Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
blinkysc
2026-03-08 12:13:29 -05:00
committed by GitHub
parent 7010e680c8
commit 470c075049

View File

@@ -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)