This commit is contained in:
DBotThePony 2024-05-05 22:34:45 +07:00
parent 2a4b5ffb03
commit 74937b15ac
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -70,7 +70,7 @@ data class ObjectOrientation(
val cell = world.chunkMap.getCell(it + position)
//if (!cell.foreground.material.isEmptyTile) println("not empty tile: ${it + position}, space $it, pos $position")
//if (cell.dungeonId in world.protectedDungeonIDs) println("position is protected: ${it + position}")
cell.foreground.material.isEmptyTile && (ignoreProtectedDungeons || world.isDungeonIDProtected(cell.dungeonId))
cell.foreground.material.isEmptyTile && (ignoreProtectedDungeons || !world.isDungeonIDProtected(cell.dungeonId))
}
if (valid) {