aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-13 05:46:08 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-04-13 05:46:08 +0200
commit3d06b454d2cb2b92766dd3967ec0c97d2df17bf3 (patch)
tree96fe64c0559934daf3d592d29e1d46055d550826 /src/main/java/at/hannibal2/skyhanni/config
parent274bd74d397da5b43b900d0f766ce7825e079061 (diff)
downloadskyhanni-3d06b454d2cb2b92766dd3967ec0c97d2df17bf3.tar.gz
skyhanni-3d06b454d2cb2b92766dd3967ec0c97d2df17bf3.tar.bz2
skyhanni-3d06b454d2cb2b92766dd3967ec0c97d2df17bf3.zip
added composter empty time
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java6
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java4
2 files changed, 7 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
index 6fbe69ad2..c539d4c3a 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
@@ -797,7 +797,7 @@ public class Garden {
@Expose
@ConfigOption(name = "True Farming Fortune", desc = "")
- @ConfigEditorAccordion(id = 18)
+ @ConfigEditorAccordion(id = 22)
public boolean farmingFortune = false;
@Expose
@@ -806,7 +806,7 @@ public class Garden {
desc = "Displays current farming fortune, including crop-specific bonuses."
)
@ConfigEditorBoolean
- @ConfigAccordionId(id = 18)
+ @ConfigAccordionId(id = 22)
public boolean farmingFortuneDisplay = true;
@Expose
@@ -816,7 +816,7 @@ public class Garden {
" the chance for bonus drops. "
)
@ConfigEditorBoolean
- @ConfigAccordionId(id = 18)
+ @ConfigAccordionId(id = 22)
public boolean farmingFortuneDropMultiplier = false;
@Expose
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java
index 4638f816d..f1b161474 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java
@@ -1,5 +1,6 @@
package at.hannibal2.skyhanni.config.features;
+import at.hannibal2.skyhanni.data.model.ComposterUpgrade;
import at.hannibal2.skyhanni.features.garden.CropAccessory;
import at.hannibal2.skyhanni.features.garden.CropType;
import com.google.gson.annotations.Expose;
@@ -64,4 +65,7 @@ public class Hidden {
@Expose
public Map<String, Integer> gardenFarmingArmorDrops = new HashMap<>();
+
+ @Expose
+ public Map<ComposterUpgrade, Integer> gardenComposterUpgrades = new HashMap<>();
}