Make fences not jumpable

This commit is contained in:
PilzAdam 2012-09-03 14:59:59 +02:00
parent 794c68b32b
commit c72800ff83
1 changed files with 4 additions and 0 deletions

View File

@ -924,6 +924,10 @@ minetest.register_node("default:fence_wood", {
type = "fixed",
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
},
node_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, 1, 0.5},
},
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2},
sounds = default.node_sound_wood_defaults(),
})