mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
[11632] Revert part of 11631
This commit is contained in:
parent
10865b633f
commit
54f623d2b8
3 changed files with 11 additions and 3 deletions
|
|
@ -16044,7 +16044,11 @@ void Player::_LoadAuras(QueryResult *result, uint32 timediff)
|
|||
if (spellproto->procCharges == 0)
|
||||
remaincharges = 0;
|
||||
|
||||
if (stackcount == 0)
|
||||
if (!spellproto->StackAmount)
|
||||
stackcount = 1;
|
||||
else if (spellproto->StackAmount < stackcount)
|
||||
stackcount = spellproto->StackAmount;
|
||||
else if (!stackcount)
|
||||
stackcount = 1;
|
||||
|
||||
SpellAuraHolder *holder = CreateSpellAuraHolder(spellproto, this, NULL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue