From fec89b7803132bcf043afcb4d57000b26a7781ec Mon Sep 17 00:00:00 2001 From: IvanCraft623 <57236932+IvanCraft623@users.noreply.github.com> Date: Sun, 17 Jul 2022 14:50:15 -0500 Subject: [PATCH] Lava burns entities for only 8 seconds in Bedrock (#5173) --- src/block/Lava.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/block/Lava.php b/src/block/Lava.php index 05e98e50b..0e94a4fc3 100644 --- a/src/block/Lava.php +++ b/src/block/Lava.php @@ -94,7 +94,8 @@ class Lava extends Liquid{ $ev = new EntityDamageByBlockEvent($this, $entity, EntityDamageEvent::CAUSE_LAVA, 4); $entity->attack($ev); - $ev = new EntityCombustByBlockEvent($this, $entity, 15); + //in java burns entities for 15 seconds - seems to be a parity issue in bedrock + $ev = new EntityCombustByBlockEvent($this, $entity, 8); $ev->call(); if(!$ev->isCancelled()){ $entity->setOnFire($ev->getDuration());