letter_cutters aren't ground content (#13)
Some checks failed
luacheck / lint (push) Has been cancelled
Some checks failed
luacheck / lint (push) Has been cancelled
This commit is contained in:
parent
de5514a8e7
commit
216cd3b577
@ -346,6 +346,7 @@ minetest.register_node("letters:letter_cutter_lower", {
|
|||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
groups = {choppy = 2,oddly_breakable_by_hand = 2},
|
groups = {choppy = 2,oddly_breakable_by_hand = 2},
|
||||||
|
is_ground_content = false,
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
on_construct = letter_cutter.on_construct,
|
on_construct = letter_cutter.on_construct,
|
||||||
can_dig = letter_cutter.can_dig,
|
can_dig = letter_cutter.can_dig,
|
||||||
@ -400,6 +401,7 @@ minetest.register_node("letters:letter_cutter_upper", {
|
|||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
groups = {choppy = 2,oddly_breakable_by_hand = 2},
|
groups = {choppy = 2,oddly_breakable_by_hand = 2},
|
||||||
|
is_ground_content = false,
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
on_construct = letter_cutter.on_construct,
|
on_construct = letter_cutter.on_construct,
|
||||||
can_dig = letter_cutter.can_dig,
|
can_dig = letter_cutter.can_dig,
|
||||||
@ -456,6 +458,7 @@ minetest.register_node("letters:letter_cutter_digit", {
|
|||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
groups = {choppy = 2,oddly_breakable_by_hand = 2},
|
groups = {choppy = 2,oddly_breakable_by_hand = 2},
|
||||||
|
is_ground_content = false,
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
on_construct = letter_cutter.on_construct,
|
on_construct = letter_cutter.on_construct,
|
||||||
can_dig = letter_cutter.can_dig,
|
can_dig = letter_cutter.can_dig,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user