aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authormartimavocado <39881008+martimavocado@users.noreply.github.com>2024-06-20 22:35:54 +0100
committerGitHub <noreply@github.com>2024-06-20 23:35:54 +0200
commit6410dcf999a08d4b6625fdc25f2db148c9df8338 (patch)
treea2d3c2c1a8b5340e24c115d8bcad407aac90e9f3 /src/main/java/at/hannibal2/skyhanni/config
parent89c8bf8103b9429fbc7a1ea63612dac565872d43 (diff)
downloadskyhanni-6410dcf999a08d4b6625fdc25f2db148c9df8338.tar.gz
skyhanni-6410dcf999a08d4b6625fdc25f2db148c9df8338.tar.bz2
skyhanni-6410dcf999a08d4b6625fdc25f2db148c9df8338.zip
Feature: Block opening chocolate factory without Mythic Rabbit equipped (#2124)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/event/HoppityEggsConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java5
2 files changed, 6 insertions, 1 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 7fb058dd8..0083b1343 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
@@ -146,7 +146,7 @@ public class HoppityEggsConfig {
@Expose
@ConfigOption(
name = "Rabbit Pet Warning",
- desc = "Warn when using the Egglocator without having a §d§lMythic Rabbit Pet §7selected. " +
+ desc = "Warn when using the Egglocator without a §d§lMythic Rabbit Pet §7equipped. " +
"§eOnly enable this setting when you own a mythic Rabbit pet."
)
@ConfigEditorBoolean
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 7c6fb1b14..c1da5e511 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
@@ -216,4 +216,9 @@ public class ChocolateFactoryConfig {
@Accordion
public ChocolateFactoryCustomReminderConfig customReminder = new ChocolateFactoryCustomReminderConfig();
+ @Expose
+ @ConfigOption(name = "Mythic Rabbit", desc = "Blocks running /cf without a §d§lMythic Rabbit Pet §7equipped.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean mythicRabbitRequirement = false;
}