[8517] Implement glyph 42747.

This commit is contained in:
VladimirMangos 2009-09-21 01:17:01 +04:00
parent 53fb04dc14
commit 9b57017256
2 changed files with 9 additions and 1 deletions

View file

@ -3438,7 +3438,8 @@ bool Unit::AddAura(Aura *Aur)
// Aura can stack on self -> Stack it;
if(aurSpellInfo->StackAmount)
{
i2->second->modStackAmount(1);
// can be created with >1 stack by some spell mods
i2->second->modStackAmount(Aur->GetStackAmount());
delete Aur;
return false;
}