Fix place_as_tile

This commit is contained in:
Simon Brodtmann 2025-07-05 17:18:15 +02:00
parent 6ea21083ea
commit 7e223e7c62
4 changed files with 5 additions and 53 deletions

View file

@ -82,7 +82,7 @@ if not mods["Dectorio"] then
data.raw.item["wood"].place_as_tile = {
result = "bi-wood-floor",
condition_size = 4,
condition = { "water-tile" }
condition = { layers = { water_tile = true }}
}
end
@ -352,7 +352,7 @@ if data.raw["item"]["bob-greenhouse"] then
data.raw["item"]["fertilizer"].place_as_tile = {
result = BioInd.AB_tiles() and "vegetation-green-grass-3" or "grass-3",
condition_size = 1,
condition = { "water-tile" }
condition = { layers = { water_tile = true }}
}
end