Dear darkfrei,
I tried to change "concrete" to "stone-brick" in data-final-fixes.lua but when i started factorio, a text alert "1:unexpected symbol near '-' " appear.
My code:
local stone-brick_tiles = {"hazard-stone-brick-left", "hazard-stone-brick-right", "stone-brick"}
local collision_layer = "layer-12"
for i, tile_name in pairs (stone-brick_tiles) do
local tile = data.raw.tile[tile_name]
if tile then
tile.collision_mask = {"ground-tile", collision_layer}
end
end
local units = {"small-biter", "medium-biter", "big-biter", "behemoth-biter", "small-spitter", "medium-spitter",
"big-spitter", "behemoth-spitter"}
for i, unit_name in pairs (units) do
local unit = data.raw.unit[unit_name]
if unit then
unit.collision_mask = {"player-layer", "train-layer", collision_layer}
end
end