From 7eaed31dd19a01a0060db074b610084fa1eea182 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Thu, 14 Dec 2023 00:28:48 +0530 Subject: [PATCH] fix the MP bug that was reported --- src/PathedInterior.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PathedInterior.hx b/src/PathedInterior.hx index 2eba450e..9111ce75 100644 --- a/src/PathedInterior.hx +++ b/src/PathedInterior.hx @@ -136,6 +136,7 @@ class PathedInterior extends InteriorObject { stopped = false; if (currentTime == targetTime) { velocity.set(0, 0, 0); + this.collider.velocity.set(0, 0, 0); } else { var delta = 0.0; if (targetTime < 0) {