From 0c53ce8afdd5f64d2764d5ce0d4f2f2a59a7b06e Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 8 Jun 2024 02:43:01 +0200 Subject: fixed not fully loading trophy fish json data --- .../hannibal2/skyhanni/data/jsonobjects/repo/TrophyFishJson.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main/java') 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 + @Expose @SerializedName("trophy_fish") val trophyFish: Map, ) data class TrophyFishInfo( - val displayName: String, - val description: String, - val rate: Int?, - val fillet: Map + @Expose val displayName: String, + @Expose val description: String, + @Expose val rate: Int?, + @Expose val fillet: Map, ) -- cgit