Hi, I think it would be great if the reduction of the collision box size also applied to the planted trees in Space Age! That could be accomplished by adding the code below in data-final-fixes.lua:
if mods["space-age"] then
local tree = data.raw["plant"]["tree-plant"]
if tree ~= nil then
tree.collision_box = {{-0.05,-0.05},{ 0.05, 0.05}}
end
end
At least in principle, one should then also add this entry in info.json, to ensure proper mod load order:
"dependencies": ["? space-age"]