From 75509ff11fba32322b5314e9999da6e67270c9fb Mon Sep 17 00:00:00 2001 From: ForestOfLight Date: Thu, 18 Sep 2025 19:33:30 -0700 Subject: [PATCH] Allow for more precise flexible instance movement --- packs/BP/scripts/classes/Instance/FlexibleInstanceMove.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/packs/BP/scripts/classes/Instance/FlexibleInstanceMove.js b/packs/BP/scripts/classes/Instance/FlexibleInstanceMove.js index 02fddef..a7def96 100644 --- a/packs/BP/scripts/classes/Instance/FlexibleInstanceMove.js +++ b/packs/BP/scripts/classes/Instance/FlexibleInstanceMove.js @@ -71,8 +71,6 @@ export class FlexibleInstanceMove { if (playerMovement.isSneaking()) velocity.y -= 1; - if (velocity.length > 0) - velocity = velocity.normalized; return velocity.multiply(speedFactor); }