diff --git a/sql/mangos_spell_check.sql b/sql/mangos_spell_check.sql index 192dde8c7..21892c31c 100644 --- a/sql/mangos_spell_check.sql +++ b/sql/mangos_spell_check.sql @@ -283,6 +283,7 @@ INSERT INTO spell_check (spellid,SpellFamilyName,SpellFamilyMaskA,SpellFamilyMas (55004, 0, -1, -1, -1, -1, -1, 3, -1,-1,'Nitro Boosts', 'Spell::EffectDummy'), (55441,11, -1, -1, -1, -1, -1, -1, 4,-1,'Glyph of Mana Tide', 'Spell::EffectDummy'), (56235,-1, -1, -1, -1, -1, -1, -1, -1,-1,'Glyph of Conflagrate', 'Spell::EffectSchoolDMG'), +(57627,-1, -1, -1, -1, -1, -1, -1, -1,-1,'Charge', 'Spell::EffectSchoolDMG'), (57946, 5,0x0000000000040000,0x00000000, -1, -1, -1, 3, -1,-1,'Life Tap', 'Spell::EffectDummy'), (58367,-1, -1, -1, -1, -1, -1, -1, 4,-1,'Glyph of Execution', 'Spell::EffectDummy'), (58418, 0, -1, -1, -1, -1, -1, 3, -1,-1,'Portal to Orgrimmar', 'Spell::EffectDummy'), diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 06718ce7e..aed916a78 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -577,7 +577,8 @@ void Spell::EffectSchoolDMG(uint32 effect_idx) //Gore if (m_spellInfo->SpellIconID == 1578) { - damage+= rand()%2 ? damage : 0; + if (m_caster->HasAura(57627)) // Charge 6 sec post-affect + damage *= 2; } // Mongoose Bite else if ((m_spellInfo->SpellFamilyFlags & UI64LIT(0x000000002)) && m_spellInfo->SpellVisual[0]==342) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 19b6a4d8d..8c332d97f 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8282" + #define REVISION_NR "8283" #endif // __REVISION_NR_H__