aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-18 17:40:40 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-18 17:40:40 +0200
commit1c0be4c5416bbcb178cbbb8974f522b4705a9168 (patch)
tree2b9f76e44a98e29d34fe0775da129cb7b0ef8c5b
parent6876720d86d88917c9581611048f4457630233f6 (diff)
downloadskyhanni-1c0be4c5416bbcb178cbbb8974f522b4705a9168.tar.gz
skyhanni-1c0be4c5416bbcb178cbbb8974f522b4705a9168.tar.bz2
skyhanni-1c0be4c5416bbcb178cbbb8974f522b4705a9168.zip
No longer showing Speed Talisman and base crops in the composter organic matter list
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt
index 67fd5c778..8aaa9747a 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt
@@ -408,7 +408,9 @@ class ComposterOverlay {
if (internalName.endsWith("_HELMET")) continue
if (internalName.endsWith("_CHESTPLATE")) continue
if (internalName.endsWith("_LEGGINGS")) continue
+ if (internalName == "SPEED_TALISMAN") continue
val (newId, amount) = NEUItems.getMultiplier(internalName)
+ if (amount <= 9) continue
val finalAmount =
if (internalName == "ENCHANTED_HUGE_MUSHROOM_1" || internalName == "ENCHANTED_HUGE_MUSHROOM_2") {
// 160 * 8 * 4 is 5120 and not 5184, but hypixel made an error, so we have to copy the error