Fix player house grid config init

Closes #724
This commit is contained in:
Kurt
2026-01-27 19:31:39 -06:00
parent a6d21f515f
commit 1e32df00db

View File

@@ -12,7 +12,7 @@ public abstract record LayerItem : AcreSelectionGrid
public Item[] Tiles { get; }
#pragma warning disable CA1857
protected LayerItem(Item[] tiles, [ConstantExpected] byte w, [ConstantExpected] byte h) : this(tiles, new(w, h, w, h))
protected LayerItem(Item[] tiles, [ConstantExpected] byte w, [ConstantExpected] byte h) : this(tiles, new(w, h, 1, 1))
#pragma warning restore CA1857
{
}