mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-12-25 09:50:19 +01:00
Make button and Wall lever emit very few light if turned on
This commit is contained in:
parent
ce72ed2bab
commit
2fe312618c
@ -41,6 +41,7 @@ minetest.register_node("mesecons_button:button_on", {
|
|||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
legacy_wallmounted = true,
|
legacy_wallmounted = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
light_source = LIGHT_MAX-9,
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 }
|
fixed = { -6/16, -6/16, 5/16, 6/16, 6/16, 8/16 }
|
||||||
|
@ -43,6 +43,7 @@ minetest.register_node("mesecons_walllever:wall_lever_on", {
|
|||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
light_source = LIGHT_MAX-9,
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = { -8/16, -8/16, 3/16, 8/16, 8/16, 8/16 },
|
fixed = { -8/16, -8/16, 3/16, 8/16, 8/16, 8/16 },
|
||||||
|
Loading…
Reference in New Issue
Block a user