diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/storage')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java b/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java index d88ccb315..825686ca4 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java +++ b/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java @@ -130,10 +130,13 @@ public class ProfileSpecificStorage { public String targetName = null; @Expose - public Map<String, Integer> rabbitCounts = new HashMap(); + public Map<String, Integer> rabbitCounts = new HashMap<>(); @Expose - public Map<IslandType, Set<LorenzVec>> collectedEggLocations = new HashMap(); + public Map<String, HoppityCollectionStats.LocationRabbit> locationRabbitRequirements = new HashMap<>(); + + @Expose + public Map<IslandType, Set<LorenzVec>> collectedEggLocations = new HashMap<>(); @Expose public Integer hoppityShopYearOpened = null; |
