diff options
author | QAston <none@none> | 2009-05-06 19:06:07 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-05-06 19:06:07 +0200 |
commit | 8cd49be2ff898cffd06beb6168e90e46aa7b7a66 (patch) | |
tree | ffe24986b0c241fe07f5f87bbf2cfa1ca2952173 | |
parent | ef2c40875028eca6a938a3f5d486fdddceeb71a7 (diff) |
*Fix chains of ice
--HG--
branch : trunk
-rw-r--r-- | src/game/SpellAuras.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 66b1392b3a3..40652d48a3d 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -6641,10 +6641,10 @@ void AuraEffect::PeriodicDummyTick() AuraEffect *slow = GetParentAura()->GetPartAura(0); if (slow) { - slow->ApplyModifier(false); + slow->ApplyModifier(false, true); slow->SetAmount(slow->GetAmount() + GetAmount()); if (slow->GetAmount() > 0) slow->SetAmount(0); - slow->ApplyModifier(true); + slow->ApplyModifier(true, true); } return; } |