mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
13 lines
216 B
C#
13 lines
216 B
C#
namespace Robust.Shared.Map;
|
|
|
|
internal partial class MapManager
|
|
{
|
|
public void RemoveMapId(MapId mapId)
|
|
{
|
|
if (mapId == MapId.Nullspace)
|
|
return;
|
|
|
|
_mapEntities.Remove(mapId);
|
|
}
|
|
}
|