From 6ba4502319b53556cb5182089b0db34263c38d4f Mon Sep 17 00:00:00 2001 From: SDraw Date: Sat, 22 Oct 2022 12:07:50 +0300 Subject: [PATCH] Oops --- ml_amt/MotionTweaker.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ml_amt/MotionTweaker.cs b/ml_amt/MotionTweaker.cs index e76c1b1..90aa85a 100644 --- a/ml_amt/MotionTweaker.cs +++ b/ml_amt/MotionTweaker.cs @@ -188,10 +188,10 @@ namespace ml_amt switch(l_param.m_sync) { case ParameterSyncType.Local: - PlayerSetup.Instance._animator.SetBool(l_param.m_hash, m_grounded); + PlayerSetup.Instance._animator.SetBool(l_param.m_hash, m_groundedRaw); break; case ParameterSyncType.Synced: - PlayerSetup.Instance.animatorManager.SetAnimatorParameterBool(l_param.m_name, m_grounded); + PlayerSetup.Instance.animatorManager.SetAnimatorParameterBool(l_param.m_name, m_groundedRaw); break; } }