aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-08 02:43:01 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-08 02:43:01 +0200
commit0c53ce8afdd5f64d2764d5ce0d4f2f2a59a7b06e (patch)
treed1724184011e4836de15d1503c371bd774a3afa6 /src/main/java
parent9b9202eddb76dccc67771cc35f2cdf2737083762 (diff)
downloadskyhanni-0c53ce8afdd5f64d2764d5ce0d4f2f2a59a7b06e.tar.gz
skyhanni-0c53ce8afdd5f64d2764d5ce0d4f2f2a59a7b06e.tar.bz2
skyhanni-0c53ce8afdd5f64d2764d5ce0d4f2f2a59a7b06e.zip
fixed not fully loading trophy fish json data
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/TrophyFishJson.kt10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/TrophyFishJson.kt b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/TrophyFishJson.kt
index 48f3a3f67..02079ed30 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/TrophyFishJson.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/TrophyFishJson.kt
@@ -5,12 +5,12 @@ import com.google.gson.annotations.Expose
import com.google.gson.annotations.SerializedName
data class TrophyFishJson(
- @Expose @SerializedName("trophy_fish") val trophyFish: Map<String, TrophyFishInfo>
+ @Expose @SerializedName("trophy_fish") val trophyFish: Map<String, TrophyFishInfo>,
)
data class TrophyFishInfo(
- val displayName: String,
- val description: String,
- val rate: Int?,
- val fillet: Map<TrophyRarity, Int>
+ @Expose val displayName: String,
+ @Expose val description: String,
+ @Expose val rate: Int?,
+ @Expose val fillet: Map<TrophyRarity, Int>,
)