[10181] Fix spell 55681. Thanks Danstahr.

This commit is contained in:
Laise 2010-07-12 11:00:08 +03:00
parent 09d61040e6
commit 6c8967ae5f
2 changed files with 4 additions and 1 deletions

View file

@ -2899,6 +2899,9 @@ bool Unit::HandleProcTriggerSpellAuraProc(Unit *pVictim, uint32 damage, Aura* tr
basepoints[0] = damage * triggerAmount / 100 / 3;
target = this;
}
// Glyph of Shadow Word: Pain
else if (auraSpellInfo->Id == 55681)
basepoints[0] = triggerAmount * GetCreateMana() / 100;
break;
}
case SPELLFAMILY_DRUID:

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10180"
#define REVISION_NR "10181"
#endif // __REVISION_NR_H__