From a663178bda7db7e8259a899fff8534254c7b9661 Mon Sep 17 00:00:00 2001 From: Emagi Date: Fri, 8 Aug 2025 16:14:00 -0400 Subject: [PATCH] Address issue with spawns getting stuck when using MoveToLocation --- source/WorldServer/Spawn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/WorldServer/Spawn.cpp b/source/WorldServer/Spawn.cpp index 6c21372..2af55dd 100644 --- a/source/WorldServer/Spawn.cpp +++ b/source/WorldServer/Spawn.cpp @@ -3367,7 +3367,7 @@ void Spawn::ProcessMovement(bool isSpawnListLocked){ if (!movementCase && IsRunning() && !IsPauseMovementTimerActive()) { // 6/7/2025: Fixes glitchy movement when spawns are close together and keep warping forward and back to the original position - CalculateRunningLocation(true); + CalculateRunningLocation(); last_movement_update = Timer::GetCurrentTime2(); } else if(movementCase)