diff options
-rw-r--r-- | sql/FULL/world_spell_full.sql | 2 | ||||
-rw-r--r-- | sql/updates/4510_world_spell_linked_spell.sql | 3 | ||||
-rw-r--r-- | src/game/SpellMgr.cpp | 4 |
3 files changed, 6 insertions, 3 deletions
diff --git a/sql/FULL/world_spell_full.sql b/sql/FULL/world_spell_full.sql index adc11d4dc82..c675d9f86bc 100644 --- a/sql/FULL/world_spell_full.sql +++ b/sql/FULL/world_spell_full.sql @@ -68,7 +68,7 @@ INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comm (48384, 50170, 2, 'Improved Moonkin Form'), (48395, 50171, 2, 'Improved Moonkin Form'), (48396, 50172, 2, 'Improved Moonkin Form'), -( 20594, 65116, 2, 'Stoneform'), +( 20594, 65116, 0, 'Stoneform'), -- Creature ( 36574, 36650, 0, 'Apply Phase Slip Vulnerability'), diff --git a/sql/updates/4510_world_spell_linked_spell.sql b/sql/updates/4510_world_spell_linked_spell.sql new file mode 100644 index 00000000000..b92a87bb267 --- /dev/null +++ b/sql/updates/4510_world_spell_linked_spell.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (20594); +INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES +( 20594, 65116, 0, 'Stoneform');
\ No newline at end of file diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 75482eb44a8..eafda06077c 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -2913,8 +2913,8 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellEntry const* spellproto // Intimidating Shout else if (spellproto->SpellFamilyFlags[0] & 0x40000) return DIMINISHING_FEAR_BLIND; - // Charge - else if (spellproto->SpellFamilyFlags[0] & 0x1) + // Charge Stun + else if (spellproto->SpellFamilyFlags[0] & 0x01000000) return DIMINISHING_NONE; break; } |