diff --git a/src/helpers/AnimatedVariable.cpp b/src/helpers/AnimatedVariable.cpp index 50de0149..740e604f 100644 --- a/src/helpers/AnimatedVariable.cpp +++ b/src/helpers/AnimatedVariable.cpp @@ -75,6 +75,9 @@ float CAnimatedVariable::getPercent() { } float CAnimatedVariable::getCurveValue() { + if (!m_bIsBeingAnimated) + return 1.f; + const auto SPENT = getPercent(); if (SPENT >= 1.f)