Address issue with spawns getting stuck when using MoveToLocation

This commit is contained in:
Emagi 2025-08-08 16:14:00 -04:00
parent 4d0ef974ae
commit a663178bda

View File

@ -3367,7 +3367,7 @@ void Spawn::ProcessMovement(bool isSpawnListLocked){
if (!movementCase && IsRunning() && !IsPauseMovementTimerActive()) { 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 // 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(); last_movement_update = Timer::GetCurrentTime2();
} }
else if(movementCase) else if(movementCase)