*Fix chains of ice

--HG--
branch : trunk
This commit is contained in:
QAston
2009-05-06 19:06:07 +02:00
parent ef2c408750
commit 8cd49be2ff

View File

@@ -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;
}