Skip to content

Commit

Permalink
memory isn't ground content
Browse files Browse the repository at this point in the history
  • Loading branch information
SwissalpS authored Feb 27, 2024
1 parent 5b0c017 commit 0fd4007
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions memory.lua
Original file line number Diff line number Diff line change
@@ -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}")
Expand Down Expand Up @@ -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}")
Expand Down

0 comments on commit 0fd4007

Please sign in to comment.