Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
metalgearsloth committed Nov 19, 2023
1 parent 2f1d7f2 commit 3f52dc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Robust.Shared/Console/Commands/MapCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args)
{
var mapUid = _map.GetMapEntityId(mapId);

msg.AppendFormat("{0}: {1}, init: {2}, paused: {3}, ent: {4}, grids: {5}\n",
msg.AppendFormat("{0}: {1}, init: {2}, paused: {3}, nent: {4}, grids: {5}\n",
mapId, _entManager.GetComponent<MetaDataComponent>(mapUid).EntityName,
_map.IsMapInitialized(mapId),
_map.IsMapPaused(mapId),
_map.GetMapEntityId(mapId),
_entManager.GetNetEntity(_map.GetMapEntityId(mapId)),
string.Join(",", _map.GetAllGrids(mapId).Select(grid => grid.Owner)));
}

Expand Down

0 comments on commit 3f52dc8

Please sign in to comment.