diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
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; } |