diff --git a/src/block/Liquid.php b/src/block/Liquid.php index bf8327a37..542b2dc48 100644 --- a/src/block/Liquid.php +++ b/src/block/Liquid.php @@ -493,6 +493,9 @@ abstract class Liquid extends Transparent{ } protected function canFlowInto(Block $block) : bool{ - return $this->position->getWorld()->isInWorld($block->position->x, $block->position->y, $block->position->z) and $block->canBeFlowedInto() and !($block instanceof Liquid and $block->isSource()); //TODO: I think this should only be liquids of the same type + return + $this->position->getWorld()->isInWorld($block->position->x, $block->position->y, $block->position->z) and + $block->canBeFlowedInto() and + !($block instanceof Liquid and $block->isSource()); //TODO: I think this should only be liquids of the same type } }