Skip to content
Snippets Groups Projects
Commit f9837108 authored by Vanessa Dannenberg's avatar Vanessa Dannenberg
Browse files

reduce light output of small lattice cube lantern

(especially if it comes from a darkage:lamp)
parent 6a3c0092
No related branches found
No related tags found
No related merge requests found
...@@ -360,8 +360,11 @@ homedecor.register("ceiling_lantern", { ...@@ -360,8 +360,11 @@ homedecor.register("ceiling_lantern", {
walkable = false walkable = false
}) })
local sm_light = default.LIGHT_MAX-2
if minetest.get_modpath("darkage") then if minetest.get_modpath("darkage") then
minetest.register_alias("homedecor:lattice_lantern_large", "darkage:lamp") minetest.register_alias("homedecor:lattice_lantern_large", "darkage:lamp")
sm_light = default.LIGHT_MAX-5
else else
homedecor.register("lattice_lantern_large", { homedecor.register("lattice_lantern_large", {
description = S("Lattice lantern (large)"), description = S("Lattice lantern (large)"),
...@@ -388,7 +391,7 @@ homedecor.register("lattice_lantern_small", { ...@@ -388,7 +391,7 @@ homedecor.register("lattice_lantern_small", {
fixed = { -0.25, -0.5, -0.25, 0.25, 0, 0.25 } fixed = { -0.25, -0.5, -0.25, 0.25, 0, 0.25 }
}, },
groups = { snappy = 3 }, groups = { snappy = 3 },
light_source = default.LIGHT_MAX-1, light_source = sm_light,
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
on_place = minetest.rotate_node on_place = minetest.rotate_node
}) })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment