forked from VoxeLibre/VoxeLibre
Allow free placement of grass
This commit is contained in:
parent
12a02f9961
commit
b77b7c8840
|
@ -1844,7 +1844,6 @@ minetest.register_node("mcl_core:deadbush", {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {-6/16, -8/16, -6/16, 6/16, 8/16, 6/16},
|
fixed = {-6/16, -8/16, -6/16, 6/16, 8/16, 6/16},
|
||||||
},
|
},
|
||||||
node_placement_prediction = "",
|
|
||||||
_mcl_blast_resistance = 0,
|
_mcl_blast_resistance = 0,
|
||||||
_mcl_hardness = 0,
|
_mcl_hardness = 0,
|
||||||
})
|
})
|
||||||
|
|
|
@ -102,8 +102,6 @@ minetest.register_node("mcl_flowers:tallgrass", {
|
||||||
minetest.add_item(pos, oldnode.name)
|
minetest.add_item(pos, oldnode.name)
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
node_placement_prediction = "",
|
|
||||||
on_place = on_place_flower,
|
|
||||||
_mcl_blast_resistance = 0,
|
_mcl_blast_resistance = 0,
|
||||||
_mcl_hardness = 0,
|
_mcl_hardness = 0,
|
||||||
})
|
})
|
||||||
|
@ -131,8 +129,6 @@ minetest.register_node("mcl_flowers:fern", {
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
drop = wheat_seed_drop,
|
drop = wheat_seed_drop,
|
||||||
node_placement_prediction = "",
|
|
||||||
on_place = on_place_flower,
|
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = { -4/16, -0.5, -4/16, 4/16, 7/16, 4/16 },
|
fixed = { -4/16, -0.5, -4/16, 4/16, 7/16, 4/16 },
|
||||||
|
|
Loading…
Reference in New Issue