Skip to content

Commit

Permalink
digiterm nodes are not ground content
Browse files Browse the repository at this point in the history
  • Loading branch information
SwissalpS authored and wsor4035 committed Apr 5, 2024
1 parent 04d3258 commit a43b934
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions functions.lua
Expand Up @@ -100,6 +100,7 @@ end
local node_def_defaults = {
groups = { display_api = 1},
is_ground_content = false,
on_place = display_api.on_place,
on_destruct = display_api.on_destruct,
on_rotate = display_api.on_rotate,
Expand Down
3 changes: 3 additions & 0 deletions nodes.lua
Expand Up @@ -257,6 +257,7 @@ minetest.register_node('digiterms:beige_keyboard', {
"digiterms_beige_keyboard_sides.png", "digiterms_beige_keyboard_sides.png",},
drawtype = "nodebox",
groups = {oddly_breakable_by_hand = 3},
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {
Expand All @@ -281,6 +282,7 @@ minetest.register_node('digiterms:white_keyboard', {
"digiterms_white_keyboard_sides.png", "digiterms_white_keyboard_sides.png",},
drawtype = "nodebox",
groups = {oddly_breakable_by_hand = 3},
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {
Expand All @@ -305,6 +307,7 @@ minetest.register_node('digiterms:black_keyboard', {
"digiterms_black_keyboard_sides.png", "digiterms_black_keyboard_sides.png",},
drawtype = "nodebox",
groups = {oddly_breakable_by_hand = 3},
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {
Expand Down

0 comments on commit a43b934

Please sign in to comment.