diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index e5014f4bb..6037b450b 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1280,6 +1280,7 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) case 51026: // Create Drakkari Medallion Cover case 51592: // Pickup Primordial Hatchling case 51961: // Captured Chicken Cover + case 55364: // Create Ghoul Drool Cover { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT || m_caster->GetTypeId() != TYPEID_PLAYER) return; @@ -1293,6 +1294,7 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) case 51026: spellId = 50737; break; case 51592: spellId = 51593; break; case 51961: spellId = 51037; break; + case 55364: spellId = 55363; break; } if (const SpellEntry *pSpell = sSpellStore.LookupEntry(spellId)) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a4f009048..44afd5d88 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 "9669" + #define REVISION_NR "9670" #endif // __REVISION_NR_H__