1
0
Fork 0
Minetest mod to implement flowing, finite liquids
 
 
Go to file
FaceDeer 48b6f1be20 Initial commit 2017-01-22 23:45:00 -07:00
.gitattributes 🎉 Added .gitattributes & .gitignore files 2017-01-22 23:37:52 -07:00
.gitignore 🎉 Added .gitattributes & .gitignore files 2017-01-22 23:37:52 -07:00
LICENSE.txt Initial commit 2017-01-22 23:45:00 -07:00
README.txt Initial commit 2017-01-22 23:45:00 -07:00
depends.txt Initial commit 2017-01-22 23:45:00 -07:00
init.lua Initial commit 2017-01-22 23:45:00 -07:00
mod.conf Initial commit 2017-01-22 23:45:00 -07:00
settingtypes.txt Initial commit 2017-01-22 23:45:00 -07:00

README.txt

This mod implements a simple but powerful approach to making the various liquid node types (water, lava) behave in a more realistic manner. In a nutshell, it sets an Active Block Modifier running for liquid nodes that implements the following behavior:

* If there is a "flowing" node below the "source" liquid block, swap the liquid block with the flowing node (the liquid drops)
* Else if there is at least one "flowing" node beside the "source" liquid block, swap with a random flowing node beside it.

This causes "source" blocks for liquids to randomly shuffle around when they don't completely fill a vertical layer, and causes them to drain rapidly down holes or flow rapidly down hillsides. The ABM only runs for blocks that are adjacent to flowing nodes and does very few calculations so it's reasonably lightweight.

Each type of liquid can have this behaviour enabled independently of each other. By default lava is configured to flow more slowly than water, but this can be changed in the mod's settings.

If basic water is set as dynamic, it loses its "renewability" - water nodes don't replicate like they normally do. If you are concerned about the global water level dropping over time as water pours down into undersea caverns, or just generally don't like the idea of water being a finite resource (even with an ocean's worth to start with), this mod includes an optional feature that turns natural clay deposits into "springs". Clay deposits get an Active Block Modifier that checks if there's air or shallow water above them and refills them with newly spawned water source blocks.

If this clay is dug out by players and reconstituted into clay blocks elsewhere, the "spring" behaviour won't occur for these - it only happens for clay spawned by mapgen while this feature is enabled. (In technical terms, when clay springs are enabled the map generator replaces generated clay with an otherwise identical "damp clay" node type that drops regular clay when dug. The ABM only affects this "damp clay" node type.)

Note that other than this clay spring feature and the override of water's "renewability" this mod doesn't affect any default node definitions, so any other mods and features dealing with liquids should still function as they did before. If you disable any of the liquid types they will just "freeze" in whatever position they were in at the time.