diff options
author | J10a1n15 <45315647+j10a1n15@users.noreply.github.com> | 2024-07-06 10:27:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-06 10:27:14 +0200 |
commit | d6358620457236f01ac32e9d5c406c9632b05369 (patch) | |
tree | 76a399e8cbbbb615da1a72ab7664c4cdecf8c9d6 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 06d4a207346eaf685e8857b7bcc1cfff693b43ac (diff) | |
download | skyhanni-d6358620457236f01ac32e9d5c406c9632b05369.tar.gz skyhanni-d6358620457236f01ac32e9d5c406c9632b05369.tar.bz2 skyhanni-d6358620457236f01ac32e9d5c406c9632b05369.zip |
Feature: Line to Nukekebi Skull (#2148)
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/slayer/SlayerConfig.java | 3 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/slayer/endermen/EndermanConfig.java | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/slayer/SlayerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/slayer/SlayerConfig.java index f0b3174f0..74f61be7f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/slayer/SlayerConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/slayer/SlayerConfig.java @@ -13,8 +13,9 @@ import io.github.notenoughupdates.moulconfig.annotations.ConfigOption; public class SlayerConfig { @Expose - @Category(name = "Endermen", desc = "Endermen Slayer Feature") + @Category(name = "Enderman", desc = "Enderman Slayer Feature") @Accordion + // TODO rename to "enderman" public EndermanConfig endermen = new EndermanConfig(); @Expose diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/slayer/endermen/EndermanConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/slayer/endermen/EndermanConfig.java index a28b7afa8..1ff8b49d7 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/slayer/endermen/EndermanConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/slayer/endermen/EndermanConfig.java @@ -19,6 +19,12 @@ public class EndermanConfig { public boolean highlightNukekebi = false; @Expose + @ConfigOption(name = "Line to Nukekubi Skulls", desc = "Draw a line to the Enderman Slayer Nukekubi Skulls.") + @ConfigEditorBoolean + @FeatureToggle + public boolean drawLineToNukekebi = false; + + @Expose @ConfigOption(name = "Phase Display", desc = "Show the current phase of the Enderman Slayer in damage indicator.") @ConfigEditorBoolean public boolean phaseDisplay = false; |