diff options
Diffstat (limited to 'src/game/SpellAuras.cpp')
| -rw-r--r-- | src/game/SpellAuras.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index a6667c10c78..8e791020ad8 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -1075,7 +1075,8 @@ void Aura::UpdateSlotCounterAndDuration()      if(slot >= MAX_AURAS)          return; -    SetAuraApplication(slot, m_stackAmount-1); +    if(!m_procCharges) +        SetAuraApplication(slot, m_stackAmount-1);      UpdateAuraDuration();  }  | 
