Go to file
FaceDeer 7ce992363b switch to the MIT license 2017-04-03 18:30:10 -06:00
locale Update spanish translation. 2017-02-24 00:19:55 -03: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 switch to the MIT license 2017-04-03 18:30:10 -06:00
README.txt update readme description of the algorithm 2017-01-27 22:49:17 -07:00
depends.txt add the "flow-through" feature 2017-02-17 22:28:52 -07:00
description.txt bump version for API change 2017-01-26 14:13:15 -07:00
init.lua add an update_liquids call 2017-03-17 18:05:28 -06:00
intllib.lua Not much to translate here, but why not. Internationalization library support. 2017-02-02 20:27:54 -07:00
mod.conf Initial commit 2017-01-22 23:45:00 -07:00
screenshot.png add a screenshot. Ironically, I had to disable the mod to make this screenshot. 2017-01-27 21:54:11 -07:00
settingtypes.txt add mapgen prefill feature for water 2017-03-17 15:20:19 -06:00

README.txt

This mod implements a simple 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" or air node below a "source" liquid block, swap the liquid block with the node below it (ie, the liquid drops)
* Else swap with a random flowing or air node beside it.

This causes "source" blocks for liquids to randomly shuffle around when they don't completely fill a horizontal layer, and causes them to drain rapidly down holes or flow rapidly down hillsides. Normal "flowing" behaviour is unchanged so even though this mod is just moving cubes around the surface of the water looks reasonably smooth. The ABM only runs for blocks that are adjacent to flowing nodes and does very few calculations so it's also reasonably lightweight - I'm essentially borrowing the engine's built-in liquid flow detection to determine when my own code needs to run.

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.

Damp Clay Counters Ocean Loss
=============================

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.)

There's also a "spring" block that's available only via the creative menu or /give command. This block has an ABM that ensures there's always a single block of water generated directly above it, regardless of where the block is placed.

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 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.