Add more standard groups
This commit is contained in:
parent
94f257028e
commit
928e58346d
3 changed files with 10 additions and 5 deletions
|
@ -54,7 +54,7 @@ minetest.register_node("beds:bed_bottom", {
|
|||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
stack_max = 1,
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3,deco_block=1},
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=3,bed=1,deco_block=1},
|
||||
sounds = mcl_core.node_sound_wood_defaults(),
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
|
|
|
@ -503,7 +503,7 @@ minetest.register_node("doors:trapdoor", {
|
|||
paramtype = "light",
|
||||
stack_max = 64,
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,mesecon_effector_on=1,door=1},
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,mesecon_effector_on=1,door=2},
|
||||
sounds = mcl_core.node_sound_wood_defaults(),
|
||||
drop = "doors:trapdoor",
|
||||
node_box = {
|
||||
|
@ -549,7 +549,7 @@ minetest.register_node("doors:trapdoor_open", {
|
|||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
pointable = true,
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,mesecon_effector_on=1,door=1},
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,mesecon_effector_on=1,door=2},
|
||||
sounds = mcl_core.node_sound_wood_defaults(),
|
||||
drop = "doors:trapdoor",
|
||||
node_box = {
|
||||
|
@ -626,7 +626,7 @@ minetest.register_node("doors:iron_trapdoor", {
|
|||
is_ground_content = false,
|
||||
stack_max = 64,
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,mesecon_effector_on=1,door=1},
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,mesecon_effector_on=1,door=2},
|
||||
sounds = mcl_core.node_sound_wood_defaults(),
|
||||
drop = "doors:iron_trapdoor",
|
||||
node_box = {
|
||||
|
@ -672,7 +672,7 @@ minetest.register_node("doors:iron_trapdoor_open", {
|
|||
paramtype2 = "facedir",
|
||||
is_ground_content = false,
|
||||
pointable = true,
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,door=1,mesecon_effector_on=1},
|
||||
groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,door=2,mesecon_effector_on=1},
|
||||
sounds = mcl_core.node_sound_wood_defaults(),
|
||||
drop = "doors:iron_trapdoor",
|
||||
node_box = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue