From 82a00ed51d55d2be7d65d24c2e93e797cab33864 Mon Sep 17 00:00:00 2001 From: Zachary Jaser <76439587+Zickles@users.noreply.github.com> Date: Wed, 6 Mar 2024 03:33:07 -0500 Subject: [Feat] block player from destroying fuel in inferno minion (#1103) Co-authored-by: Cal --- .../skyhanni/data/jsonobjects/repo/InfernoMinionFuelsJson.kt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/InfernoMinionFuelsJson.kt (limited to 'src/main/java/at/hannibal2/skyhanni/data/jsonobjects') diff --git a/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/InfernoMinionFuelsJson.kt b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/InfernoMinionFuelsJson.kt new file mode 100644 index 000000000..d6d3931c2 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/InfernoMinionFuelsJson.kt @@ -0,0 +1,9 @@ +package at.hannibal2.skyhanni.data.jsonobjects.repo + +import at.hannibal2.skyhanni.utils.NEUInternalName +import com.google.gson.annotations.Expose +import com.google.gson.annotations.SerializedName + +data class InfernoMinionFuelsJson( + @Expose @SerializedName("inferno_minion_fuels") val minionFuels: List +) -- cgit