diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index adf1251f0..4740d58bc 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1045,6 +1045,12 @@ void Aura::HandleAddModifier(bool apply, bool Real) m_spellmod->mask = UI64LIT(0x0000010000000002); // Corruption and Unstable Affliction m_spellmod->mask2 = 0x00000000; } + // Improved Flametongue Weapon, overwrite wrong data, maybe time re-add table + else if (spellProto->Id == 37212) + { + m_spellmod->mask = UI64LIT(0x0000000000200000); // Flametongue Weapon (Passive) + m_spellmod->mask2 = 0x00000000; + } } ((Player*)GetTarget())->AddSpellMod(m_spellmod, apply); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 4318c22f1..e256ed065 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 "11615" + #define REVISION_NR "11616" #endif // __REVISION_NR_H__