From 1376e0b0b3e719d69adad465dc0a4f8eb6b73d35 Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Thu, 26 Nov 2015 12:09:24 -0800 Subject: Reduce the hitboxes on tomatoes and potatoes. These were really awkward when harvesting, so drop the size by 10% or so. --- potato.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'potato.lua') diff --git a/potato.lua b/potato.lua index b1aa889..d86af42 100644 --- a/potato.lua +++ b/potato.lua @@ -22,6 +22,10 @@ minetest.register_node("crops:potato_eyes", { walkable = false, paramtype = "light", groups = { snappy=3,flammable=3,flora=1,attached_node=1 }, + selection_box = { + type = "fixed", + fixed = {-0.45, -0.5, -0.45, 0.45, -0.4, 0.45} + }, on_place = function(itemstack, placer, pointed_thing) local under = minetest.get_node(pointed_thing.under) @@ -51,7 +55,7 @@ minetest.register_node("crops:potato_plant_" .. stage , { sounds = default.node_sound_leaves_defaults(), selection_box = { type = "fixed", - fixed = {-0.5, -0.5, -0.5, 0.5, -0.5 + (((math.min(stage, 4)) + 1) / 5), 0.5} + fixed = {-0.45, -0.5, -0.45, 0.45, -0.6 + (((math.min(stage, 4)) + 1) / 5), 0.45} } }) end -- cgit v1.2.3