mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-06-28 05:50:17 +02:00
Set is_ground_content to false (#386)
This commit is contained in:
@ -14,6 +14,7 @@ minetest.register_node("mesecons_lamp:lamp_on", {
|
||||
tiles = {"jeija_meselamp_on.png"},
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
is_ground_content = false,
|
||||
legacy_wallmounted = true,
|
||||
sunlight_propagates = true,
|
||||
walkable = true,
|
||||
@ -39,6 +40,7 @@ minetest.register_node("mesecons_lamp:lamp_off", {
|
||||
wield_image = "jeija_meselamp.png",
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
is_ground_content = false,
|
||||
sunlight_propagates = true,
|
||||
walkable = true,
|
||||
node_box = mesecon_lamp_box,
|
||||
|
Reference in New Issue
Block a user