1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2024-12-25 02:00:20 +01:00

removed not_in_creative from trellis and beanpole

This commit is contained in:
TenPlus1 2016-02-14 09:27:13 +00:00
parent 4c8931c9cd
commit a91b980797
2 changed files with 2 additions and 8 deletions

View File

@ -60,10 +60,7 @@ minetest.register_node("farming:beanpole", {
}
},
selection_box = farming.select,
groups = {
snappy = 3, flammable = 2, attached_node = 1,
not_in_creative_inventory = 1
},
groups = {snappy = 3, flammable = 2, attached_node = 1},
sounds = default.node_sound_leaves_defaults(),
on_place = function(itemstack, placer, pointed_thing)
if minetest.is_protected(pointed_thing.under, placer:get_player_name()) then

View File

@ -56,10 +56,7 @@ minetest.register_node("farming:trellis", {
}
},
selection_box = farming.select,
groups = {
snappy = 3, flammable = 2, attached_node = 1,
not_in_creative_inventory = 1
},
groups = {snappy = 3, flammable = 2, attached_node = 1},
sounds = default.node_sound_leaves_defaults(),
on_place = function(itemstack, placer, pointed_thing)
if minetest.is_protected(pointed_thing.under, placer:get_player_name()) then