Fix tile modifications failing

This commit is contained in:
DBotThePony 2024-04-25 23:36:59 +07:00
parent 16bbc243e8
commit 7efa39bb47
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -122,7 +122,7 @@ sealed class TileModification {
world.geometry.y.cell(y - 1) == y ||
world.geometry.y.cell(y + 1) == y ||
world.anyCellSatisfies(x, y, 1) { tx, ty, tcell ->
tx != x && ty != y && (tcell.foreground.material.value.isConnectable || tcell.background.material.value.isConnectable)
(tx != x || ty != y) && (tcell.foreground.material.value.isConnectable || tcell.background.material.value.isConnectable)
}
}