diff --git a/Robust.Client/Graphics/Clyde/Clyde.GridRendering.cs b/Robust.Client/Graphics/Clyde/Clyde.GridRendering.cs index 0c38395af..7c9778623 100644 --- a/Robust.Client/Graphics/Clyde/Clyde.GridRendering.cs +++ b/Robust.Client/Graphics/Clyde/Clyde.GridRendering.cs @@ -203,14 +203,12 @@ namespace Robust.Client.Graphics.Clyde private void _updateOnGridCreated(GridStartupEvent ev) { var gridId = ev.GridId; - Logger.DebugS("grid", $"Adding {gridId} to grid renderer"); _mapChunkData.Add(gridId, new Dictionary()); } private void _updateOnGridRemoved(GridRemovalEvent ev) { var gridId = ev.GridId; - Logger.DebugS("grid", $"Removing {gridId} from grid renderer"); var data = _mapChunkData[gridId]; foreach (var chunkDatum in data.Values) diff --git a/Robust.Shared/Map/MapManager.GridCollection.cs b/Robust.Shared/Map/MapManager.GridCollection.cs index c8bd4e3fa..7a3220b92 100644 --- a/Robust.Shared/Map/MapManager.GridCollection.cs +++ b/Robust.Shared/Map/MapManager.GridCollection.cs @@ -151,7 +151,7 @@ internal partial class MapManager public IMapGrid GetGrid(EntityUid gridId) { DebugTools.Assert(gridId.IsValid()); - + return GetGridComp(gridId).Grid; } @@ -286,7 +286,6 @@ internal partial class MapManager if (!GridExists(gridIndex)) return; - Logger.DebugS("map", $"Entity {comp.Owner} removed grid component, removing bound grid {gridIndex}"); DeleteGrid(gridIndex); }