Tree Collision

by skomick

Makes tree collision box very small - easily traverse dense forests

Tweaks
10 months ago
0.13.0 - 2.0
107K
Environment

i Planted trees

5 months ago
(updated 5 months ago)

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"]

New response