aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data/model
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/data/model
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/data/model')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/model/ComposterUpgrade.kt12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/model/ComposterUpgrade.kt b/src/main/java/at/hannibal2/skyhanni/data/model/ComposterUpgrade.kt
index 83a106ca8..cc0a82a2d 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/model/ComposterUpgrade.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/model/ComposterUpgrade.kt
@@ -1,11 +1,11 @@
package at.hannibal2.skyhanni.data.model
-enum class ComposterUpgrade(val displayName: String) {
- COMPOSTER_SPEED("Composter Speed"),
- ORGANIC_MATTER_CAP("Organic Matter Cap"),
- MULTI_DROP("Multi Drop"),
- COST_REDUCTION("Cost Reduction"),
- FUEL_CAP("Fuel Cap"),
+enum class ComposterUpgrade(val displayName: String, val slotNumber: Int) {
+ COMPOSTER_SPEED("Composter Speed", 20),
+ MULTI_DROP("Multi Drop", 21),
+ FUEL_CAP("Fuel Cap", 22),
+ ORGANIC_MATTER_CAP("Organic Matter Cap", 23),
+ COST_REDUCTION("Cost Reduction", 24),
;
companion object {