Liquids

From Minecraft Wiki
(Redirected from Fluids)

Liquids (or fluids) are blocks that, as the name suggests, can flow and spread. There are currently only two liquids in Minecraft: Lava and Water. Milk is also technically a liquid, but since it is contained in a bucket, it cannot flow or spread.

Falling liquid[edit | edit source]

An air block below a liquid block is converted into a liquid block of that type. This happens faster for water than for lava. Lava takes longer than water to disappear when the source block is removed, and flow when it is placed, with about a 2-second delay.

As of Beta version 1.9 pre-release, liquid that is suspended above an open area by one block thick of material will seep through the material and drip to the floor. Lava particles that are seeping do not cause damage or start fires. This makes digging upwards slightly safer, since one can tell if one is near a pool of water/lava.

Liquid level[edit | edit source]

Each liquid block has a level value. Source blocks have a level of 0, and the maximum level depends on liquid type.

  • Overworld Water: 7
  • Nether Water: ?
  • End Water: 7
  • Overworld Lava: 3
  • Nether Lava: 7
  • End Lava: ?

Note: The "level" value increases as the water is further from the source. A high level value means that the water is actually physically downhill.

Still liquids[edit | edit source]

To keep track of which blocks are actively flowing, Water and Lava each have a pair of block IDs. For water, there is Water (8) and Still Water (9). Still Water never updates. Water updates periodically, and it will change itself to Still Water when it cannot spread any further. When liquids have air to the left and right of it, it will appear to be still, since it can't flow in two directions.

Changing a block next to Still Water will turn it back to Water so it can spread some more.

If one edits either type of liquid block into one's inventory, they will spread when placed, since placing a block causes updates.

Liquid block update times[edit | edit source]

The state of a liquid block only updates at certain times:

  • On creation
  • If one of the 6 neighbouring blocks' state changes.
  • If its own level changes

State changes that cause an update include:

  • Adding or removing a block
  • A neighbouring block's level changes
  • A redstone wire switches on or off

Liquid block update process[edit | edit source]

When a liquid block updates, it performs the following checks.

  • Check inward flow
If there is a liquid block of the same type above, set level to 1
Otherwise, reduce or increase level in steps of 1 so that it is 1 higher than the one of its 4 neighboring blocks with the lowest level*.
If level is increased past the max level, replace liquid block with air block.
Level cannot be decreased below 1

* This does not affect source blocks (level = 0)

  • Check outward flow
This only happens for liquid blocks of less than the max level value
Determine the shortest distance to a fall, but only scan 5 blocks distance*
If any of the directions tied for shortest have an air block, convert that air block to a liquid block with a level of 1 more than the current block*

* This means that lava will flow towards a drop that it cannot reach.

Source creation[edit | edit source]

A water block is converted into a source block if all three of these conditions hold true:

  • It is bordered by 2 water sources.
  • The 2 sources are on the same horizontal level as it.
  • There is a solid, opaque block underneath it.

During 1.9 Pre-release 5, a lava block can be converted into a source block if the following conditions hold true:

  • It is bordered by 4 lava sources in a cross-like arrangement.
  • The 4 sources are on the same horizontal level as it.
  • There is a solid, opaque block underneath it.

Mixing of liquids[edit | edit source]

Mixing of liquids causes cobblestone to be produced, except that if water flows into a lava source block, then obsidian is produced. As of Beta 1.9 pre-release, lava that falls onto water will produce stone. Prior to 1.9 pre-release, the water would be replaced with falling lava.

When determining the shortest distance to a drop, other liquid blocks are assumed to be equal to air.

Liquids also stop TNT explosions from destroying blocks, but the explosion will still affect entities.