From 3e89ae52c0ad3a2827da1fd49248a9dd58d4a497 Mon Sep 17 00:00:00 2001 From: necrophili <82480518+necrophili@users.noreply.github.com> Date: Sun, 8 Aug 2021 23:19:05 +0800 Subject: [PATCH] Fix AutoWither Fixed soul soil not being found --- src/main/java/cloudburst/rejects/modules/AutoWither.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cloudburst/rejects/modules/AutoWither.java b/src/main/java/cloudburst/rejects/modules/AutoWither.java index c2294de..ea9933c 100644 --- a/src/main/java/cloudburst/rejects/modules/AutoWither.java +++ b/src/main/java/cloudburst/rejects/modules/AutoWither.java @@ -177,7 +177,7 @@ public class AutoWither extends Module { // Soul sand/soil and skull slot FindItemResult findSoulSand = InvUtils.findInHotbar(Items.SOUL_SAND); - if (!findSoulSand.found()) InvUtils.findInHotbar(Items.SOUL_SOIL); + if (!findSoulSand.found()) findSoulSand = InvUtils.findInHotbar(Items.SOUL_SOIL); FindItemResult findWitherSkull = InvUtils.findInHotbar(Items.WITHER_SKELETON_SKULL); // Check for enough resources