Skip to content

Commit

Permalink
Beds: Make non pointable by pointable definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Rui authored and paramat committed Nov 14, 2015
1 parent e41a411 commit 1d8def5
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions mods/beds/api.lua
Expand Up @@ -13,12 +13,11 @@ function beds.register_bed(name, def)
sounds = default.node_sound_wood_defaults(),
node_box = {
type = "fixed",
fixed = def.nodebox.bottom,
fixed = def.nodebox.bottom
},
selection_box = {
type = "fixed",
fixed = def.selectionbox,

fixed = def.selectionbox
},
after_place_node = function(pos, placer, itemstack)
local n = minetest.get_node_or_nil(pos)
Expand Down Expand Up @@ -89,16 +88,13 @@ function beds.register_bed(name, def)
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
pointable = false,
groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, bed = 2},
sounds = default.node_sound_wood_defaults(),
node_box = {
type = "fixed",
fixed = def.nodebox.top,
},
selection_box = {
type = "fixed",
fixed = {0, 0, 0, 0, 0, 0},
},
}
})

minetest.register_alias(name, name .. "_bottom")
Expand Down

0 comments on commit 1d8def5

Please sign in to comment.