diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-06-08 02:43:01 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-06-08 02:43:01 +0200 |
commit | 0c53ce8afdd5f64d2764d5ce0d4f2f2a59a7b06e (patch) | |
tree | d1724184011e4836de15d1503c371bd774a3afa6 /src/main/java | |
parent | 9b9202eddb76dccc67771cc35f2cdf2737083762 (diff) | |
download | skyhanni-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.kt | 10 |
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>, ) |