From 6410dcf999a08d4b6625fdc25f2db148c9df8338 Mon Sep 17 00:00:00 2001 From: martimavocado <39881008+martimavocado@users.noreply.github.com> Date: Thu, 20 Jun 2024 22:35:54 +0100 Subject: Feature: Block opening chocolate factory without Mythic Rabbit equipped (#2124) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../hannibal2/skyhanni/config/features/event/HoppityEggsConfig.java | 2 +- .../features/inventory/chocolatefactory/ChocolateFactoryConfig.java | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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; } -- cgit