fix lantern light value to fit minetest limit

This commit is contained in:
AFCMS 2022-02-08 23:00:45 +01:00
parent 6572a8c908
commit 9cc088c940
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ mcl_lanterns.register_lantern("lantern", {
longdesc = S("Lanterns are light sources which can be placed on the top or the bottom of most blocks."),
texture = "mcl_lanterns_lantern.png",
texture_inv = "mcl_lanterns_lantern_inv.png",
light_level = 15,
light_level = 14,
})
mcl_lanterns.register_lantern("soul_lantern", {