[9193] Implement dummy effect for 46797.

This commit is contained in:
VladimirMangos 2010-01-16 22:54:18 +03:00
parent d59c394370
commit 0a1dd54b7f
2 changed files with 8 additions and 2 deletions

View file

@ -1230,7 +1230,13 @@ void Spell::EffectDummy(uint32 i)
} }
return; return;
} }
case 51582: //Rocket Boots Engaged (Rocket Boots Xtreme and Rocket Boots Xtreme Lite) case 46797: // Quest - Borean Tundra - Set Explosives Cart
if (!unitTarget)
return;
// Quest - Borean Tundra - Summon Explosives Cart
unitTarget->CastSpell(unitTarget,46798,true,m_CastItem,NULL,m_originalCasterGUID);
break;
case 51582: // Rocket Boots Engaged (Rocket Boots Xtreme and Rocket Boots Xtreme Lite)
{ {
if (m_caster->GetTypeId() != TYPEID_PLAYER) if (m_caster->GetTypeId() != TYPEID_PLAYER)
return; return;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9192" #define REVISION_NR "9193"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__