1
0
镜像自地址 https://github.com/mt-mods/homedecor_modpack.git 已同步 2025-09-16 16:35:36 +02:00

reduce light output of small lattice cube lantern

(especially if it comes from a darkage:lamp)
这个提交包含在:
Vanessa Dannenberg
2018-10-18 07:17:08 -04:00
父节点 6a3c009276
当前提交 f983710899

查看文件

@@ -360,8 +360,11 @@ homedecor.register("ceiling_lantern", {
walkable = false
})
local sm_light = default.LIGHT_MAX-2
if minetest.get_modpath("darkage") then
minetest.register_alias("homedecor:lattice_lantern_large", "darkage:lamp")
sm_light = default.LIGHT_MAX-5
else
homedecor.register("lattice_lantern_large", {
description = S("Lattice lantern (large)"),
@@ -388,7 +391,7 @@ homedecor.register("lattice_lantern_small", {
fixed = { -0.25, -0.5, -0.25, 0.25, 0, 0.25 }
},
groups = { snappy = 3 },
light_source = default.LIGHT_MAX-1,
light_source = sm_light,
sounds = default.node_sound_glass_defaults(),
on_place = minetest.rotate_node
})