letter_cutters aren't ground content (#13)
Some checks failed
luacheck / lint (push) Has been cancelled

This commit is contained in:
Luke aka SwissalpS 2024-02-29 21:40:11 +01:00 committed by GitHub
parent de5514a8e7
commit 216cd3b577
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -346,6 +346,7 @@ minetest.register_node("letters:letter_cutter_lower", {
sunlight_propagates = true,
paramtype2 = "facedir",
groups = {choppy = 2,oddly_breakable_by_hand = 2},
is_ground_content = false,
sounds = default.node_sound_wood_defaults(),
on_construct = letter_cutter.on_construct,
can_dig = letter_cutter.can_dig,
@ -400,6 +401,7 @@ minetest.register_node("letters:letter_cutter_upper", {
sunlight_propagates = true,
paramtype2 = "facedir",
groups = {choppy = 2,oddly_breakable_by_hand = 2},
is_ground_content = false,
sounds = default.node_sound_wood_defaults(),
on_construct = letter_cutter.on_construct,
can_dig = letter_cutter.can_dig,
@ -456,6 +458,7 @@ minetest.register_node("letters:letter_cutter_digit", {
sunlight_propagates = true,
paramtype2 = "facedir",
groups = {choppy = 2,oddly_breakable_by_hand = 2},
is_ground_content = false,
sounds = default.node_sound_wood_defaults(),
on_construct = letter_cutter.on_construct,
can_dig = letter_cutter.can_dig,