“Still <Liquid>” → “<Liquid> Source”
This commit is contained in:
parent
d36ec8ee17
commit
064858ff59
5 changed files with 9 additions and 9 deletions
|
@ -26,7 +26,7 @@ minetest.register_abm({
|
|||
elseif lavatype == "flowing" and water[w].y == pos.y and (water[w].x == pos.x or water[w].z == pos.z) then
|
||||
minetest.set_node(pos, {name="mcl_core:cobble"})
|
||||
minetest.sound_play("fire_extinguish_flame", {pos = pos, gain = 0.25, max_hear_distance = 16})
|
||||
-- Still lava vs flowing water above or horizontally neighbored: Lava turns into obsidian
|
||||
-- Lava source vs flowing water above or horizontally neighbored: Lava turns into obsidian
|
||||
elseif lavatype == "source" and
|
||||
((water[w].y > pos.y and water[w].x == pos.x and water[w].z == pos.z) or
|
||||
(water[w].y == pos.y and (water[w].x == pos.x or water[w].z == pos.z))) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue