aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorObsidian <108832807+Obsidianninja11@users.noreply.github.com>2024-05-15 23:55:23 -0800
committerGitHub <noreply@github.com>2024-05-16 09:55:23 +0200
commit388a656c95c745c8cced86931e9ab30e10e3bb9e (patch)
tree9dab00b107dbbcf7f52f02e6ffac393cb60b209e /src/main/java/at/hannibal2/skyhanni/config
parent5d4c57e8afa664d25be6fdaaf1e82a6e7b195ecd (diff)
downloadskyhanni-388a656c95c745c8cced86931e9ab30e10e3bb9e.tar.gz
skyhanni-388a656c95c745c8cced86931e9ab30e10e3bb9e.tar.bz2
skyhanni-388a656c95c745c8cced86931e9ab30e10e3bb9e.zip
Improvement: Better Hoppity Egg Warning (#1802)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/event/HoppityEggsConfig.java11
1 files changed, 11 insertions, 0 deletions
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 1278542b5..04c915ff0 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
@@ -5,6 +5,7 @@ import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider;
+import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorText;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
@@ -50,6 +51,16 @@ public class HoppityEggsConfig {
public boolean warnUnclaimedEggs = false;
@Expose
+ @ConfigOption(name = "Click to Warp", desc = "Makes the eggs ready chat message clickable to warp you to an island.")
+ @ConfigEditorBoolean
+ public boolean warpUnclaimedEggs = false;
+
+ @Expose
+ @ConfigOption(name = "Warp Destination", desc = "A custom island to warp to in the above option.")
+ @ConfigEditorText
+ public String warpDestination = "nucleus";
+
+ @Expose
@ConfigOption(name = "Show during Contest", desc = "Show during a farming contest.")
@ConfigEditorBoolean
@FeatureToggle