[8692] Fixed trigger part of spell 31944.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
DonTomika 2009-10-20 23:30:34 +02:00 committed by ApoC
parent ac6e13d0e3
commit 6a2e23cac0
2 changed files with 8 additions and 3 deletions

View file

@ -1707,8 +1707,13 @@ void Aura::TriggerSpell()
} }
// // Bloodmyst Tesla // // Bloodmyst Tesla
// case 31611: break; // case 31611: break;
// // Doomfire // Doomfire
// case 31944: break; case 31944:
{
int32 damage = m_modifier.m_amount * ((float)(GetAuraDuration() + m_modifier.periodictime) / GetAuraMaxDuration());
target->CastCustomSpell(target, 31969, &damage, NULL, NULL, true, NULL, this, casterGUID);
return;
}
// // Teleport Test // // Teleport Test
// case 32236: break; // case 32236: break;
// // Earthquake // // Earthquake

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 "8691" #define REVISION_NR "8692"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__