mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-22 13:16:23 +00:00
fix(Scripts/Misc): Replace some AddItem/CreateItem with spells (#9006)
Co-authored-by: offl <11556157+offl@users.noreply.github.com>
This commit is contained in:
@@ -7436,6 +7436,24 @@ void SpellMgr::LoadDbcDataCorrections()
|
||||
spellInfo->AttributesEx3 |= SPELL_ATTR3_ALWAYS_HIT;
|
||||
});
|
||||
|
||||
// Serverside - Summon Arcane Disruptor
|
||||
ApplySpellFix({ 49591 }, [](SpellEntry* spellInfo)
|
||||
{
|
||||
spellInfo->ProcChance = 101;
|
||||
spellInfo->Effect[1] = 24;
|
||||
spellInfo->EffectImplicitTargetA[1] = 25;
|
||||
spellInfo->EffectItemType[1] = 37889;
|
||||
});
|
||||
|
||||
// Serverside - Create Rocket Pack
|
||||
ApplySpellFix({ 70055 }, [](SpellEntry* spellInfo)
|
||||
{
|
||||
spellInfo->ProcChance = 101;
|
||||
spellInfo->Effect[1] = 24;
|
||||
spellInfo->EffectImplicitTargetA[1] = 25;
|
||||
spellInfo->EffectItemType[1] = 49278;
|
||||
});
|
||||
|
||||
// Ashenvale Outrunner Sneak
|
||||
// Stealth
|
||||
ApplySpellFix({ 20540, 32199 }, [](SpellEntry* spellInfo)
|
||||
|
||||
Reference in New Issue
Block a user