summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorDavid Cole <40234707+DavidArthurCole@users.noreply.github.com>2024-07-30 05:06:16 -0400
committerGitHub <noreply@github.com>2024-07-30 11:06:16 +0200
commit47c059081aa202b45d84f02e0b85a3579142fdac (patch)
treede940ab3d73eb51ef27462990997cb78d3a37a10 /src/main/java/at/hannibal2/skyhanni/config/features
parentbacc6a3a845311e0e079957423cede7544d298b8 (diff)
downloadskyhanni-47c059081aa202b45d84f02e0b85a3579142fdac.tar.gz
skyhanni-47c059081aa202b45d84f02e0b85a3579142fdac.tar.bz2
skyhanni-47c059081aa202b45d84f02e0b85a3579142fdac.zip
Feature: Stray Rabbit Tracker (#2210)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java10
1 files changed, 10 insertions, 0 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 c381444df..e35bc4d7e 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
@@ -221,4 +221,14 @@ public class ChocolateFactoryConfig {
@ConfigEditorBoolean
@FeatureToggle
public boolean mythicRabbitRequirement = false;
+
+ @Expose
+ @ConfigOption(name = "Stray Tracker", desc = "Track stray rabbits found in the Chocolate Factory menu.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean strayRabbitTracker = true;
+
+ @Expose
+ @ConfigLink(owner = ChocolateFactoryConfig.class, field = "strayRabbitTracker")
+ public Position strayRabbitTrackerPosition = new Position(300, 300, false, true);
}