diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-18 17:40:40 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-18 17:40:40 +0200 |
| commit | f363e23ecb08ced4128da88177a736bcc87ffd70 (patch) | |
| tree | 2b9f76e44a98e29d34fe0775da129cb7b0ef8c5b | |
| parent | e9ed76d4d25896b06142a8dfa67f983643668114 (diff) | |
| download | SkyHanni-f363e23ecb08ced4128da88177a736bcc87ffd70.tar.gz SkyHanni-f363e23ecb08ced4128da88177a736bcc87ffd70.tar.bz2 SkyHanni-f363e23ecb08ced4128da88177a736bcc87ffd70.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.kt | 2 |
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 |
