From b5361d58318ca9c5d9b084419e48004a36373d67 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 25 Feb 2021 22:36:53 +0000 Subject: [PATCH] Falling lava may not harden fixes #4050 this was not an issue on PM3 because the decay and falling state were both combined into the meta. --- src/block/Lava.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/block/Lava.php b/src/block/Lava.php index 004049c00..06ee5fd81 100644 --- a/src/block/Lava.php +++ b/src/block/Lava.php @@ -55,6 +55,9 @@ class Lava extends Liquid{ } protected function checkForHarden() : bool{ + if($this->falling){ + return false; + } $colliding = null; foreach(Facing::ALL as $side){ if($side === Facing::DOWN){