1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-25 18:20:36 +01:00

Add not_in_creative_inventory=1 to default:fence_woods' groups

- Solves #212
This commit is contained in:
LeMagnesium 2015-08-15 18:47:59 +02:00
parent 7dc287e014
commit 220c04bfc6

View File

@ -1995,7 +1995,7 @@ minetest.register_node("default:fence_wood", {
type = "fixed", type = "fixed",
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7}, fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
}, },
groups = {choppy=2,oddly_breakable_by_hand=2,flammable=2}, groups = {not_in_creative_inventory=1,choppy=2,oddly_breakable_by_hand=2,flammable=2},
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
}) })