aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-06-04 15:49:59 +0200
committerLinnea Gräf <nea@nea.moe>2024-06-04 15:49:59 +0200
commit9b214189ee2f2e652f1b9d3405739b9a749ff4a8 (patch)
tree56422b8c4b4e2d7c8ad8ef00ee4b13cecc7ff1ae /src/main/java/at/hannibal2/skyhanni/config
parentefcebe42a9cc2ed20ec78c2114c69d7abdc59380 (diff)
downloadSkyHanni-beta.tar.gz
SkyHanni-beta.tar.bz2
SkyHanni-beta.zip
Add location rabbit requirement trackerbeta
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java7
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java7
2 files changed, 12 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java
index 50230a6ae..943889642 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java
@@ -175,6 +175,13 @@ public class ChocolateFactoryConfig {
public boolean highlightRabbitsWithRequirement = false;
@Expose
+ @ConfigOption(name = "Show missing location rabbits in overview",
+ desc = "Shows which in which locations you have not yet found enough egg locations to unlock the rabbit for that location")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean showLocationRequirementsRabbitsInHoppityStats = false;
+
+ @Expose
@ConfigOption(name = "Only Requirement Not Met", desc = "Only highlight the rabbits you don't have the requirement for.")
@ConfigEditorBoolean
@FeatureToggle
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;