diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 13:09:44 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 13:09:44 +0200 |
commit | 7fd0a26af7ecc51af84da9317c7a19d4575bfa1b (patch) | |
tree | 8d1b45febea290f440a7aa6e44290c4c3ca270aa /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 7c78c448f52b59dd55dc37234d8d15175772be1a (diff) | |
download | skyhanni-7fd0a26af7ecc51af84da9317c7a19d4575bfa1b.tar.gz skyhanni-7fd0a26af7ecc51af84da9317c7a19d4575bfa1b.tar.bz2 skyhanni-7fd0a26af7ecc51af84da9317c7a19d4575bfa1b.zip |
Added a toggle for the already existing feature ender slayer Laser phase timer in damage indicator
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java index 099b2c3c4..ddcca5eba 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java @@ -73,11 +73,6 @@ public class DamageIndicatorConfig { public boolean showDamageOverTime = false; @Expose - @ConfigOption(name = "Health During Laser", desc = "Show the health of Voidgloom Seraph 4 during the laser phase.") - @ConfigEditorBoolean - public boolean showHealthDuringLaser = false; - - @Expose @ConfigOption(name = "Hide Nametag", desc = "Hide the vanilla nametag of damage indicator bosses.") @ConfigEditorBoolean public boolean hideVanillaNametag = false; @@ -89,9 +84,27 @@ public class DamageIndicatorConfig { @Expose + @ConfigOption(name = "Ender Slayer", desc = "") + @Accordion + public EnderSlayerConfig enderSlayer = new EnderSlayerConfig(); + + public static class EnderSlayerConfig { + + @Expose + @ConfigOption(name = "Laser phase timer", desc = "Show a timer when the laser phase will end.") + @ConfigEditorBoolean + public boolean laserPhaseTimer = false; + + @Expose + @ConfigOption(name = "Health During Laser", desc = "Show the health of Voidgloom Seraph 4 during the laser phase.") + @ConfigEditorBoolean + public boolean showHealthDuringLaser = false; + } + + @Expose @ConfigOption(name = "Vampire Slayer", desc = "") @Accordion - public VampireSlayerConfig vampireSlayer = new VampireSlayerConfig(); + public DamageIndicatorConfig.VampireSlayerConfig vampireSlayer = new DamageIndicatorConfig.VampireSlayerConfig(); public static class VampireSlayerConfig { @Expose |