forked from minetest-mods/maptools
Make Super Apple use the same selection box as default apple.
This commit is contained in:
parent
13047b2ff1
commit
ff2f3041ef
4
init.lua
4
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),
|
||||
|
|
Loading…
Reference in New Issue
Block a user