diff --git a/Content.Server/GameObjects/EntitySystems/MoverSystem.cs b/Content.Server/GameObjects/EntitySystems/MoverSystem.cs index c95e6d4a59..ba0c66a07d 100644 --- a/Content.Server/GameObjects/EntitySystems/MoverSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/MoverSystem.cs @@ -99,6 +99,7 @@ namespace Content.Server.GameObjects.EntitySystems // Can happen when teleporting between grids. if (!transform.Coordinates.TryDistance(_entityManager, mover.LastPosition, out var distance)) { + mover.LastPosition = transform.Coordinates; return; }