aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-23 14:37:48 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-23 14:37:48 +0100
commit9b8b9c442e51c471f85361f79341ce998f8da2eb (patch)
tree1403bc700e84fc86f3fa22318485b58e8dc71a38 /src/main/java/at/hannibal2/skyhanni/config/features
parente7c8613f2bfbf5c93479e63c5d6fca78b525cfc4 (diff)
downloadskyhanni-9b8b9c442e51c471f85361f79341ce998f8da2eb.tar.gz
skyhanni-9b8b9c442e51c471f85361f79341ce998f8da2eb.tar.bz2
skyhanni-9b8b9c442e51c471f85361f79341ce998f8da2eb.zip
Created CropType
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java7
1 files changed, 4 insertions, 3 deletions
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 e3502a122..160d428c7 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.features.garden.CropType;
import com.google.gson.annotations.Expose;
import java.util.ArrayList;
@@ -34,10 +35,10 @@ public class Hidden {
public List<String> crimsonIsleKuudraTiersDone = new ArrayList<>();
@Expose
- public Map<String, Long> gardenCropCounter = new HashMap<>();
+ public Map<CropType, Long> gardenCropCounter = new HashMap<>();
@Expose
- public Map<String, Integer> gardenCropsPerSecond = new HashMap<>();
+ public Map<CropType, Integer> gardenCropsPerSecond = new HashMap<>();
@Expose
public int gardenExp = -1;
@@ -46,5 +47,5 @@ public class Hidden {
public Map<String, Integer> gardenDicerRngDrops = new HashMap<>();
@Expose
- public Map<Long, List<String>> gardenJacobFarmingContestTimes = new HashMap<>();
+ public Map<Long, List<CropType>> gardenJacobFarmingContestTimes = new HashMap<>();
}