Add paramtype="light" to lava ...

This commit is contained in:
Wuzzy 2019-02-01 06:23:12 +01:00
parent e64518dd24
commit 1f1361d179
1 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,7 @@ minetest.register_node("mcl_core:lava_flowing", {
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=6.6}
},
},
paramtype = "light",
paramtype2 = "flowingliquid",
-- Real light level: 15 (but Minetest caps at 14)
light_source = 14,
@ -156,6 +157,7 @@ Lava interacts with water various ways:
}
},
-- Real light level: 15 (but Minetest caps at 14)
paramtype = "light",
light_source = 14,
sounds = mcl_sounds.node_sound_lava_defaults(),
walkable = false,