4 changes: 3 additions & 1 deletion mesecons_random/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

minetest.register_node("mesecons_random:removestone", {
tiles = {"jeija_removestone.png"},
is_ground_content = false,
inventory_image = minetest.inventorycube("jeija_removestone_inv.png"),
groups = {cracky=3},
description="Removestone",
Expand Down Expand Up @@ -30,7 +31,7 @@ minetest.register_craft({
minetest.register_node("mesecons_random:ghoststone", {
description="Ghoststone",
tiles = {"jeija_ghoststone.png"},
is_ground_content = true,
is_ground_content = false,
inventory_image = minetest.inventorycube("jeija_ghoststone_inv.png"),
groups = {cracky=3},
sounds = default.node_sound_stone_defaults(),
Expand All @@ -47,6 +48,7 @@ minetest.register_node("mesecons_random:ghoststone_active", {
pointable = false,
walkable = false,
diggable = false,
is_ground_content = false,
sunlight_propagates = true,
paramtype = "light",
drop = "mesecons_random:ghoststone",
Expand Down
3 changes: 3 additions & 0 deletions mesecons_receiver/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ mesecon.register_node("mesecons_receiver:receiver", {
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
sunlight_propagates = true,
walkable = false,
on_rotate = false,
Expand Down Expand Up @@ -89,6 +90,7 @@ mesecon.register_node("mesecons_receiver:receiver_up", {
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
sunlight_propagates = true,
walkable = false,
on_rotate = false,
Expand Down Expand Up @@ -132,6 +134,7 @@ mesecon.register_node("mesecons_receiver:receiver_down", {
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
sunlight_propagates = true,
walkable = false,
on_rotate = false,
Expand Down
4 changes: 2 additions & 2 deletions mesecons_solarpanel/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ minetest.register_node("mesecons_solarpanel:solar_panel_on", {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
is_ground_content = true,
is_ground_content = false,
node_box = {
type = "wallmounted",
wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 },
Expand Down Expand Up @@ -39,7 +39,7 @@ minetest.register_node("mesecons_solarpanel:solar_panel_off", {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
is_ground_content = true,
is_ground_content = false,
node_box = {
type = "wallmounted",
wall_bottom = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 },
Expand Down
1 change: 1 addition & 0 deletions mesecons_stickyblocks/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
minetest.register_node("mesecons_stickyblocks:sticky_block_all", {
description = "All-Sides Sticky Block",
tiles = {"default_grass.png^default_footprint.png"},
is_ground_content = false,
groups = {dig_immediate=2},
mvps_sticky = function (pos, node)
local connected = {}
Expand Down
1 change: 1 addition & 0 deletions mesecons_switch/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
mesecon.register_node("mesecons_switch:mesecon_switch", {
paramtype2="facedir",
description="Switch",
is_ground_content = false,
sounds = default.node_sound_stone_defaults(),
on_rightclick = function (pos, node)
if(mesecon.flipstate(pos, node) == "on") then
Expand Down
2 changes: 2 additions & 0 deletions mesecons_torch/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ minetest.register_node("mesecons_torch:mesecon_torch_off", {
tiles = {"jeija_torches_off.png", "jeija_torches_off_ceiling.png", "jeija_torches_off_side.png"},
inventory_image = "jeija_torches_off.png",
paramtype = "light",
is_ground_content = false,
walkable = false,
paramtype2 = "wallmounted",
selection_box = torch_selectionbox,
Expand All @@ -72,6 +73,7 @@ minetest.register_node("mesecons_torch:mesecon_torch_on", {
inventory_image = "jeija_torches_on.png",
wield_image = "jeija_torches_on.png",
paramtype = "light",
is_ground_content = false,
sunlight_propagates = true,
walkable = false,
paramtype2 = "wallmounted",
Expand Down
1 change: 1 addition & 0 deletions mesecons_walllever/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ mesecon.register_node("mesecons_walllever:wall_lever", {
wield_image = "jeija_wall_lever_inv.png",
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
sunlight_propagates = true,
walkable = false,
selection_box = {
Expand Down
1 change: 1 addition & 0 deletions mesecons_wires/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ local function register_wires()
wield_image = "mesecons_wire_inv.png",
paramtype = "light",
paramtype2 = "facedir",
is_ground_content = false,
sunlight_propagates = true,
selection_box = selectionbox,
node_box = nodebox,
Expand Down