aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data
diff options
context:
space:
mode:
authorminhperry <46137516+minhperry@users.noreply.github.com>2024-09-12 02:15:38 +0200
committerGitHub <noreply@github.com>2024-09-12 02:15:38 +0200
commit5459fc8aa33915e8d4be0c538dbb19a5e80d29db (patch)
tree77ebeae8e135166b39222f38038050d030f4dbca /src/main/java/at/hannibal2/skyhanni/data
parent5151e1a0a73e9e194f0b5ec06c49be2c853cc23f (diff)
downloadskyhanni-5459fc8aa33915e8d4be0c538dbb19a5e80d29db.tar.gz
skyhanni-5459fc8aa33915e8d4be0c538dbb19a5e80d29db.tar.bz2
skyhanni-5459fc8aa33915e8d4be0c538dbb19a5e80d29db.zip
Improvement: Chocolate Factory time to next instead of max milestone (#2503)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/HoppityEggLocationsJson.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/HoppityEggLocationsJson.kt b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/HoppityEggLocationsJson.kt
index 5e601ed32..4ad81b06a 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/HoppityEggLocationsJson.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/HoppityEggLocationsJson.kt
@@ -3,6 +3,7 @@ package at.hannibal2.skyhanni.data.jsonobjects.repo
import at.hannibal2.skyhanni.data.IslandType
import at.hannibal2.skyhanni.utils.LorenzVec
import com.google.gson.annotations.Expose
+import java.util.TreeSet
data class HoppityEggLocationsJson(
@Expose val eggLocations: Map<IslandType, List<LorenzVec>>,
@@ -21,7 +22,7 @@ data class HoppityEggLocationsJson(
@Expose val coachRabbitIndex: Int,
@Expose val maxRabbits: Int,
@Expose val maxPrestige: Int,
- @Expose val maxMilestoneChocolate: Long,
+ @Expose val chocolateMilestones: TreeSet<Long>,
@Expose val apiEggLocations: Map<IslandType, Map<String, LorenzVec>>,
@Expose val specialRabbits: List<String>,
)