loadgrid no fail (#6169)

* yoink unneeded map check

* yarr

* command line feedback
This commit is contained in:
IProduceWidgets
2025-09-04 17:40:17 -04:00
committed by GitHub
parent f91bcb62b1
commit ced127c164

View File

@@ -102,8 +102,8 @@ namespace Robust.Server.Console.Commands
var sys = _system.GetEntitySystem<SharedMapSystem>();
if (!sys.MapExists(mapId))
{
shell.WriteError("Target map does not exist.");
return;
shell.WriteError($"MapID {intMapId} did not exist, creating without map init");
sys.CreateMap(mapId, false); // doesnt runmapinit to be conservative.
}
Vector2 offset = default;