From ff2f3041efa5aa65c91a35c3b206edc249642353 Mon Sep 17 00:00:00 2001 From: Calinou Date: Sat, 19 Jul 2014 12:51:12 +0200 Subject: [PATCH] Make Super Apple use the same selection box as default apple. --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index a04dcd0..ecf3904 100644 --- a/init.lua +++ b/init.lua @@ -587,6 +587,10 @@ minetest.register_node("maptools:superapple", { inventory_image = "maptools_superapple.png", paramtype = "light", sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} + }, walkable = false, groups = {fleshy=3, dig_immediate=3, not_in_creative_inventory = maptools_creative}, on_use = minetest.item_eat(20),