forked from Mineclonia/Mineclonia
Add paramtype="light" to lava ...
This commit is contained in:
parent
e64518dd24
commit
1f1361d179
|
@ -106,6 +106,7 @@ minetest.register_node("mcl_core:lava_flowing", {
|
||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=6.6}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=6.6}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
paramtype = "light",
|
||||||
paramtype2 = "flowingliquid",
|
paramtype2 = "flowingliquid",
|
||||||
-- Real light level: 15 (but Minetest caps at 14)
|
-- Real light level: 15 (but Minetest caps at 14)
|
||||||
light_source = 14,
|
light_source = 14,
|
||||||
|
@ -156,6 +157,7 @@ Lava interacts with water various ways:
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
-- Real light level: 15 (but Minetest caps at 14)
|
-- Real light level: 15 (but Minetest caps at 14)
|
||||||
|
paramtype = "light",
|
||||||
light_source = 14,
|
light_source = 14,
|
||||||
sounds = mcl_sounds.node_sound_lava_defaults(),
|
sounds = mcl_sounds.node_sound_lava_defaults(),
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
|
Loading…
Reference in New Issue