From 7915d607656f196c78a85e8f700e2e7a6283a206 Mon Sep 17 00:00:00 2001 From: NoFantasy Date: Sun, 9 May 2010 19:10:57 +0200 Subject: [PATCH] [9853] Add dummy effect of spell 61832 Signed-off-by: NoFantasy --- src/game/SpellEffects.cpp | 2 ++ src/shared/revision_nr.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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__