[10177] Add custom code for triggered part of spell 39105

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2010-07-11 10:58:25 +02:00
parent 425352fcc7
commit b0c0b464ce
2 changed files with 8 additions and 3 deletions

View file

@ -1421,8 +1421,13 @@ void Aura::TriggerSpell()
// case 38751: break; // case 38751: break;
// // Murmur's Touch // // Murmur's Touch
// case 38794: break; // case 38794: break;
// // Activate Nether-wraith Beacon (31742 Nether-wraith Beacon item) case 39105: // Activate Nether-wraith Beacon (31742 Nether-wraith Beacon item)
// case 39105: break; {
float fX, fY, fZ;
triggerTarget->GetClosePoint(fX, fY, fZ, triggerTarget->GetObjectBoundingRadius(), 20.0f);
triggerTarget->SummonCreature(22408, fX, fY, fZ, triggerTarget->GetOrientation(), TEMPSUMMON_DEAD_DESPAWN, 0);
return;
}
// // Drain World Tree Visual // // Drain World Tree Visual
// case 39140: break; // case 39140: break;
// // Quest - Dustin's Undead Dragon Visual aura // // Quest - Dustin's Undead Dragon Visual aura

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 "10176" #define REVISION_NR "10177"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__