diff --git a/Robust.Shared/GameObjects/Systems/SharedTransformSystem.Component.cs b/Robust.Shared/GameObjects/Systems/SharedTransformSystem.Component.cs index fea8f8018c5..c858afb791e 100644 --- a/Robust.Shared/GameObjects/Systems/SharedTransformSystem.Component.cs +++ b/Robust.Shared/GameObjects/Systems/SharedTransformSystem.Component.cs @@ -880,14 +880,6 @@ public void SetMapCoordinates(EntityUid entity, MapCoordinates coordinates) [MethodImpl(MethodImplOptions.AggressiveInlining)] public void SetMapCoordinates(Entity entity, MapCoordinates coordinates) { - var xform = entity.Comp; - - if (!xform._parent.IsValid() || xform.MapUid == null) - { - DebugTools.Assert("Parent is invalid while attempting to set MapCoordinates - did you try to move root node?"); - return; - } - var mapUid = _map.GetMap(coordinates.MapId); if (!_gridQuery.HasComponent(entity) && _mapManager.TryFindGridAt(mapUid, coordinates.Position, out var targetGrid, out _))