diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index d578c29c1..59b99b02c 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1455,6 +1455,7 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) case 51961: // Captured Chicken Cover case 55364: // Create Ghoul Drool Cover case 61832: // Rifle the Bodies: Create Magehunter Personal Effects Cover + case 74904: // Pickup Sen'jin Frog { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT || m_caster->GetTypeId() != TYPEID_PLAYER) return; @@ -1470,6 +1471,7 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) case 51961: spellId = 51037; break; case 55364: spellId = 55363; break; case 61832: spellId = 47096; break; + case 74904: spellId = 74905; break; } if (const SpellEntry *pSpell = sSpellStore.LookupEntry(spellId)) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 0ea56a4b7..b35311c01 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 "11147" + #define REVISION_NR "11148" #endif // __REVISION_NR_H__