From 0fd400754f733b3f5c9c45cf0e84f5d1a9f2db0a Mon Sep 17 00:00:00 2001 From: Luke aka SwissalpS Date: Tue, 27 Feb 2024 20:40:46 +0100 Subject: [PATCH] memory isn't ground content --- memory.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/memory.lua b/memory.lua index 1143819..33e8503 100644 --- a/memory.lua +++ b/memory.lua @@ -1,6 +1,7 @@ minetest.register_node("digistuff:ram", { description = "Digilines 128Kbit SRAM", groups = {cracky=3}, + is_ground_content = false, on_construct = function(pos) local meta = minetest.get_meta(pos) meta:set_string("formspec","field[channel;Channel;${channel}") @@ -64,6 +65,7 @@ minetest.register_node("digistuff:ram", { minetest.register_node("digistuff:eeprom", { description = "Digilines 128Kbit EEPROM", groups = {cracky=3}, + is_ground_content = false, on_construct = function(pos) local meta = minetest.get_meta(pos) meta:set_string("formspec","field[channel;Channel;${channel}")