aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorErymanthus[#5074] | (u/)RayDeeUx <51521765+RayDeeUx@users.noreply.github.com>2023-10-03 02:56:32 -0400
committerGitHub <noreply@github.com>2023-10-03 08:56:32 +0200
commit741f8f258b6e865a7ba37c2c199ddba2a7c6cc7c (patch)
tree0823fd0860e934141ca37de55def0bb1296f3943 /src/main/java/at/hannibal2/skyhanni/config/features
parent781ea0728f3d79c453019904c53fb7da9a373828 (diff)
downloadskyhanni-741f8f258b6e865a7ba37c2c199ddba2a7c6cc7c.tar.gz
skyhanni-741f8f258b6e865a7ba37c2c199ddba2a7c6cc7c.tar.bz2
skyhanni-741f8f258b6e865a7ba37c2c199ddba2a7c6cc7c.zip
Feature: Highlight Jerries (Jerrypoclaypse) (#528)
Highlight Jerries during the Jerrypoclaypse. #528
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java
index 0e895f6b3..73861a546 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java
@@ -311,6 +311,21 @@ public class EventConfig {
public Position pos = new Position(150, 150, false, true);
}
+ @ConfigOption(name = "Mayor Jerry's Jerrypocalypse", desc = "")
+ @Accordion
+ @Expose
+ public MayorJerryConfig jerry = new MayorJerryConfig();
+
+ public static class MayorJerryConfig {
+
+ @Expose
+ @ConfigOption(name = "Highlight Jerries", desc = "Highlights Jerries found from the Jerrypocalypse perk. Highlight color is based on color of the Jerry.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean highlightJerries = true;
+
+ }
+
// comment in if the event is needed again
// @ConfigOption(name = "300þ Anniversary Celebration", desc = "Features for the 300þ year of SkyBlock")
@Accordion