aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorappable <enzospiacitelli@gmail.com>2024-06-03 11:04:22 -0700
committerGitHub <noreply@github.com>2024-06-03 20:04:22 +0200
commitfa524e03723906c5fda6073b6ff289af4742b6b6 (patch)
tree15767fa83597197af2071e549a3d75783ceae41a /src/main/java/at/hannibal2/skyhanni/config
parent6dc2637814aec37e1312d4f9a18ec70f58b938b1 (diff)
downloadskyhanni-fa524e03723906c5fda6073b6ff289af4742b6b6.tar.gz
skyhanni-fa524e03723906c5fda6073b6ff289af4742b6b6.tar.bz2
skyhanni-fa524e03723906c5fda6073b6ff289af4742b6b6.zip
Improvement: import egg locations from NEU PV (#1972)
Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt5
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/event/HoppityEggsConfig.java6
2 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
index 611b57621..bd6cc8efe 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -29,6 +29,7 @@ import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowHelper
import at.hannibal2.skyhanni.features.event.diana.InquisitorWaypointShare
import at.hannibal2.skyhanni.features.event.diana.MythologicalCreatureTracker
import at.hannibal2.skyhanni.features.event.hoppity.HoppityCollectionStats
+import at.hannibal2.skyhanni.features.event.hoppity.HoppityEggLocations
import at.hannibal2.skyhanni.features.event.jerry.frozentreasure.FrozenTreasureTracker
import at.hannibal2.skyhanni.features.fishing.tracker.FishingProfitTracker
import at.hannibal2.skyhanni.features.fishing.tracker.SeaCreatureTracker
@@ -535,6 +536,10 @@ object Commands {
"shaddfoundburrowlocationsfromclipboard",
"Add all ever found burrow locations from clipboard"
) { AllBurrowsList.addFromClipboard() }
+ registerCommand(
+ "shtoggleegglocationdebug",
+ "Shows Hoppity egg locations with their internal API names and status."
+ ) { HoppityEggLocations.toggleDebug() }
}
private fun internalCommands() {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/HoppityEggsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/HoppityEggsConfig.java
index 59f2d7516..6ec9f2439 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/event/HoppityEggsConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/HoppityEggsConfig.java
@@ -51,6 +51,12 @@ public class HoppityEggsConfig {
public boolean showNearbyDuplicateEggLocations = false;
@Expose
+ @ConfigOption(name = "Load from NEU PV", desc = "Load Hoppity Egg Location data from API when opening the NEU Profile Viewer.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean loadFromNeuPv = true;
+
+ @Expose
@ConfigOption(name = "Show Unclaimed Eggs", desc = "Displays which eggs haven't been found in the last SkyBlock day.")
@ConfigEditorBoolean
@FeatureToggle