summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/bazaar
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-17 07:25:29 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-17 07:25:29 +0200
commit8457da3768343138dd13191d5ae27622c0eab3fb (patch)
treee57da94b742cb676163537b5b566dcda1c80c681 /src/main/java/at/hannibal2/skyhanni/features/bazaar
parent3e80a0df99f268d6966d28909dce9dc4052cf5c4 (diff)
downloadskyhanni-8457da3768343138dd13191d5ae27622c0eab3fb.tar.gz
skyhanni-8457da3768343138dd13191d5ae27622c0eab3fb.tar.bz2
skyhanni-8457da3768343138dd13191d5ae27622c0eab3fb.zip
+ Added Composter Overlay - Show cheapest items for organic matter and fuel, show profit per compost/hour/day and time per compost
+ Added Composter Upgrades Overlay - Show a overview of all composter stats, including time till organic matter and fuel is empty when fully filled and show a preview how these stats change when hovering over an upgrade + Hide crop money display, crop milestone display and garden visitor list while inside anita show, skymart or the composter inventory
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/bazaar')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt
index da06c15f1..a149b09c1 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarDataHolder.kt
@@ -17,7 +17,6 @@ class BazaarDataHolder {
}
private fun loadNpcPrices(): MutableMap<String, Double> {
- println("loadNpcPrices")
val list = mutableMapOf<String, Double>()
try {
val itemsData = APIUtil.getJSONResponse("https://api.hypixel.net/resources/skyblock/items")
@@ -71,6 +70,7 @@ class BazaarDataHolder {
if (internalName.startsWith("TURBO_")) return true
if (internalName == "PURPLE_CANDY") return true
if (internalName == "JACOBS_TICKET") return true
+ if (internalName == "RAW_SOULFLOW") return true
return false
}