From 6672b7b1bdb2ec080f514786cde0a0419e030491 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Thu, 5 Jun 2025 08:29:47 -0400 Subject: [PATCH] Correct misleading error message in ShareMapSystem.OnParentChange (#5992) --- Robust.Shared/GameObjects/Systems/SharedMapSystem.Grid.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robust.Shared/GameObjects/Systems/SharedMapSystem.Grid.cs b/Robust.Shared/GameObjects/Systems/SharedMapSystem.Grid.cs index ce0f0b3d1..f82bd678c 100644 --- a/Robust.Shared/GameObjects/Systems/SharedMapSystem.Grid.cs +++ b/Robust.Shared/GameObjects/Systems/SharedMapSystem.Grid.cs @@ -213,7 +213,7 @@ public abstract partial class SharedMapSystem if (xform.ParentUid != xform.MapUid && meta.EntityLifeStage < EntityLifeStage.Terminating && _netManager.IsServer) { - Log.Error($"Grid {ToPrettyString(uid, meta)} is not parented to {ToPrettyString(xform._parent)} which is not a map. y'all need jesus. {Environment.StackTrace}"); + Log.Error($"Grid {ToPrettyString(uid, meta)} is parented to {ToPrettyString(xform._parent)} which is not a map. y'all need jesus. {Environment.StackTrace}"); return; }