diff --git a/Code/client/Games/Animation.cpp b/Code/client/Games/Animation.cpp index 0c243f436..b2c7c9866 100644 --- a/Code/client/Games/Animation.cpp +++ b/Code/client/Games/Animation.cpp @@ -120,7 +120,7 @@ bool ActorMediator::ForceAction(TESActionData* apAction) noexcept uint8_t result = 0; auto pActor = static_cast(apAction->actor); - if (!pActor || pActor->animationGraphHolder.IsReady()) + if (pActor && pActor->animationGraphHolder.IsReady()) { result = TiltedPhoques::ThisCall(PerformComplexAction, this, apAction);