Further adjust potato hitbox heights

This commit is contained in:
SmokeyDope 2023-03-18 00:00:37 +00:00 committed by Gitea
parent 3839250b38
commit 44711369d9
1 changed files with 3 additions and 3 deletions

View File

@ -9,10 +9,10 @@ for i=1, 7 do
selbox = { -0.5, -0.5, -0.5, 0.5, -5/16, 0.5 }
elseif i < 5 then
texture = "mcl_farming_potatoes_stage_1.png"
selbox = { -0.5, -0.5, -0.5, 0.5, -2/16, 0.5 }
selbox = { -0.5, -0.5, -0.5, 0.5, -4/16, 0.5 }
else
texture = "mcl_farming_potatoes_stage_2.png"
selbox = { -0.5, -0.5, -0.5, 0.5, -2/16, 0.5 }
selbox = { -0.5, -0.5, -0.5, 0.5, -3/16, 0.5 }
end
local create, name, longdesc
@ -77,7 +77,7 @@ minetest.register_node("mcl_farming:potato", {
selection_box = {
type = "fixed",
fixed = {
{ -0.5, -0.5, -0.5, 0.5, 1/16, 0.5 }
{ -0.5, -0.5, -0.5, 0.5, -1/16, 0.5 }
}
},
groups = {dig_immediate=3, not_in_creative_inventory=1,plant=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1},