mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 22:37:02 +00:00
[8370] Implement dummy auras for spell 36730 and 44191.
Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
parent
8d30f01a73
commit
150d3f4c95
2 changed files with 16 additions and 1 deletions
|
|
@ -2186,6 +2186,21 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
|
||||||
bg->RemovePlayerFromResurrectQueue(m_target->GetGUID());
|
bg->RemovePlayerFromResurrectQueue(m_target->GetGUID());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
case 36730: // Flame Strike
|
||||||
|
{
|
||||||
|
m_target->CastSpell(m_target, 36731, true, NULL, this);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
case 44191: // Flame Strike
|
||||||
|
{
|
||||||
|
if (m_target->GetMap()->IsDungeon())
|
||||||
|
{
|
||||||
|
uint32 spellId = m_target->GetMap()->IsHeroic() ? 46163 : 44190;
|
||||||
|
|
||||||
|
m_target->CastSpell(m_target, spellId, true, NULL, this);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
case 45934: // Dark Fiend
|
case 45934: // Dark Fiend
|
||||||
{
|
{
|
||||||
// Kill target if dispelled
|
// Kill target if dispelled
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8369"
|
#define REVISION_NR "8370"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue