mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 05:36:23 +00:00
fix(Core/Spells): [TK] Wing Buffet should be a cone. (#19382)
* fix(Core/Spells): [TK] Wing Buffet should be a cone. * radius to 20, from 15 * Update SpellInfoCorrections.cpp
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
-- Wing Buffet
|
||||
DELETE FROM `spell_custom_attr` WHERE `spell_id`=37319;
|
||||
INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES (37319, 4);
|
||||
@@ -4784,6 +4784,14 @@ void SpellMgr::LoadSpellInfoCorrections()
|
||||
spellInfo->Effects[EFFECT_0].TargetB = SpellImplicitTargetInfo(TARGET_DEST_CASTER);
|
||||
});
|
||||
|
||||
// Wing Buffet
|
||||
ApplySpellFix({ 37319 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->Effects[EFFECT_0].TargetA = SpellImplicitTargetInfo(TARGET_UNIT_CONE_ENEMY_24);
|
||||
spellInfo->Effects[EFFECT_0].TargetB = SpellImplicitTargetInfo(0);
|
||||
spellInfo->Effects[EFFECT_0].RadiusEntry = sSpellRadiusStore.LookupEntry(EFFECT_RADIUS_20_YARDS);
|
||||
});
|
||||
|
||||
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
|
||||
{
|
||||
SpellInfo* spellInfo = mSpellInfoMap[i];
|
||||
|
||||
Reference in New Issue
Block a user