Skip to content

Commit

Permalink
[7048] Fix typo (incorrect 55440 dummy proc)
Browse files Browse the repository at this point in the history
Signed-off-by: DiSlord <dislord@nomail.com>
  • Loading branch information
DiSlord committed Jan 7, 2009
1 parent 2ca7a4b commit 4a66bcd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions src/game/Unit.cpp
Expand Up @@ -5362,6 +5362,17 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
target = this;
break;
}
// Glyph of Healing Wave
case 55440:
{
// Not proc from self heals
if (this==pVictim)
return false;
basepoints0 = triggeredByAura->GetModifier()->m_amount * damage / 100;
target = this;
triggered_spell_id = 55533;
break;
}
}

// Earth Shield
Expand Down Expand Up @@ -5441,17 +5452,6 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu

return true;
}
// Glyph of Healing Wave
case 55440:
{
// Not proc from self heals
if (this==pVictim)
return false;
basepoints0 = triggeredByAura->GetModifier()->m_amount * damage / 100;
target = this;
triggered_spell_id = 55533;
break;
}
break;
}
case SPELLFAMILY_DEATHKNIGHT:
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7047"
#define REVISION_NR "7048"
#endif // __REVISION_NR_H__

0 comments on commit 4a66bcd

Please sign in to comment.