фиксы тестов

This commit is contained in:
Remuchi
2024-01-29 01:02:37 +07:00
parent 6e198dc038
commit b4dd3b0555
139 changed files with 1129 additions and 3837 deletions

View File

@@ -27,7 +27,12 @@ public sealed class BlueprintPlacerSystem : EntitySystem
Rotation = xform.LocalRotation,
};
_mapLoader.TryLoad(xform.MapID, component.Blueprint.ToString(), out var root, options);
if (component.Blueprint.CanonPath is null)
{
return;
}
_mapLoader.TryLoad(xform.MapID, component.Blueprint.CanonPath, out var root, options);
if (root is null)
return;