From c05f604d4f22b1fc92a0cea46aae4f31950c7c80 Mon Sep 17 00:00:00 2001 From: TheBusyBiscuit Date: Sun, 5 Jan 2020 21:50:17 +0100 Subject: [PATCH] Fixes #1354 --- CHANGELOG.md | 1 + .../Slimefun/Objects/SlimefunItem/machines/Crucible.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba29bca72..364ade4e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -92,6 +92,7 @@ https://thebusybiscuit.github.io/builds/TheBusyBiscuit/Slimefun4/stable/#4 * Fixed #1332 * Fixed #1356 and maybe other concurrency issues * Fixed Ore Crusher's missing recipes +* Fixed #1354 ## Release Candidate 3 (21 Nov 2019) https://thebusybiscuit.github.io/builds/TheBusyBiscuit/Slimefun4/stable/#3 diff --git a/src/main/java/me/mrCookieSlime/Slimefun/Objects/SlimefunItem/machines/Crucible.java b/src/main/java/me/mrCookieSlime/Slimefun/Objects/SlimefunItem/machines/Crucible.java index 24e54837e..30e5b56ea 100644 --- a/src/main/java/me/mrCookieSlime/Slimefun/Objects/SlimefunItem/machines/Crucible.java +++ b/src/main/java/me/mrCookieSlime/Slimefun/Objects/SlimefunItem/machines/Crucible.java @@ -103,7 +103,7 @@ public class Crucible extends SlimefunGadget { } Slimefun.runSync(() -> { - if (!block.getType().isAir()) { + if (block.getType() == Material.AIR || block.getType() == Material.CAVE_AIR || block.getType() == Material.VOID_AIR) { if (water) { if (block.getBlockData() instanceof Waterlogged) { Waterlogged wl = (Waterlogged) block.getBlockData();