diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index ce226ab30..038f2e73c 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1301,6 +1301,7 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) case 51592: // Pickup Primordial Hatchling case 51961: // Captured Chicken Cover case 55364: // Create Ghoul Drool Cover + case 61832: // Rifle the Bodies: Create Magehunter Personal Effects Cover { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT || m_caster->GetTypeId() != TYPEID_PLAYER) return; @@ -1315,6 +1316,7 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) case 51592: spellId = 51593; break; case 51961: spellId = 51037; break; case 55364: spellId = 55363; break; + case 61832: spellId = 47096; break; } if (const SpellEntry *pSpell = sSpellStore.LookupEntry(spellId)) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a7b7c509a..93a5fd239 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 "9852" + #define REVISION_NR "9853" #endif // __REVISION_NR_H__