Fix light_source warning in mcl_mushroom

This commit is contained in:
Elias Fleckenstein 2021-04-13 08:49:57 +02:00 committed by cora
parent 49cb60f2e5
commit c1ee0228f0
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@ minetest.register_node("mcl_mushroom:shroomlight", {
groups = {handy=1,hoe=7,swordy=1, leafdecay=leafdecay_distance, leaves=1, deco_block=1, },
stack_max = 64,
_mcl_hardness = 2,
light_source = 15
-- this is 15 in Minecraft
light_source = 14,
})
minetest.register_node("mcl_mushroom:warped_hyphae", {