diff options
author | Empa <42304516+ItsEmpa@users.noreply.github.com> | 2024-02-24 16:34:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-24 16:34:05 +0100 |
commit | dffba2bb9abeb84e50816b69ea6f878ba9fc3d3f (patch) | |
tree | 85425e5cdd7526b42cb1ccb4e8a7e4052dfaef78 /src/main/java/at/hannibal2/skyhanni/data | |
parent | 80813c4ec241390f465231d6fccb9cf79e6096cb (diff) | |
download | skyhanni-dffba2bb9abeb84e50816b69ea6f878ba9fc3d3f.tar.gz skyhanni-dffba2bb9abeb84e50816b69ea6f878ba9fc3d3f.tar.bz2 skyhanni-dffba2bb9abeb84e50816b69ea6f878ba9fc3d3f.zip |
Fixed Book Bundle showing wrong amount of books. #1043
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/ItemsJson.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/ItemsJson.java b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/ItemsJson.java index 87b5e4e00..ddd814159 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/ItemsJson.java +++ b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/ItemsJson.java @@ -18,4 +18,7 @@ public class ItemsJson { @Expose public List<NEUInternalName> water_fishing_rods; + + @Expose + public Map<String, Integer> book_bundle_amount; } |