Fix loadbp on paused maps (#1531)

Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
This commit is contained in:
metalgearsloth
2021-02-04 23:29:37 +11:00
committed by GitHub
parent 1ae6c32c62
commit 18fcab6f71

View File

@@ -129,6 +129,14 @@ namespace Robust.Server.Maps
entity.RunMapInit();
}
}
if (_pauseManager.IsMapPaused(mapId))
{
foreach (var entity in context.Entities)
{
entity.Paused = true;
}
}
}
return grid;