mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-07-12 01:12:22 -04:00
Fix fluids, add animated H. Liquid, add lava back
Hydroponic liquid and water didn't flow into vacuum - fixed. Lava has been put back into the game. Added animated textured images for hydroponic liquid.
This commit is contained in:
parent
dd7e548864
commit
60f4f2d99e
4 changed files with 13 additions and 11 deletions
|
@ -49,7 +49,7 @@ minetest.register_biome({
|
|||
|
||||
-- Aliases
|
||||
|
||||
minetest.register_alias("mapgen_lava_source", "moontest:hlsource")
|
||||
minetest.register_alias("mapgen_lava_source", "default:lava_source")
|
||||
minetest.register_alias("mapgen_water_source", "moontest:hlsource")
|
||||
minetest.register_alias("mapgen_stone", "moontest:stone")
|
||||
minetest.register_alias("mapgen_dirt", "moontest:dust")
|
||||
|
@ -129,9 +129,9 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||
vm:write_to_map(data)
|
||||
end)
|
||||
|
||||
--make lava delete vacuum nodes nearby so as to allow flowing
|
||||
--make liquid delete vacuum nodes nearby so as to allow flowing
|
||||
minetest.register_abm({
|
||||
nodenames = {"group:lava"},
|
||||
nodenames = {"group:liquid"},
|
||||
neighbors = {"moontest:vacuum"},
|
||||
interval = 1.0,
|
||||
chance = 1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue