From 10c1623cf006814b88ebd08fbb14ac5066c6f12c Mon Sep 17 00:00:00 2001 From: Lorenz Date: Sat, 9 Jul 2022 04:18:07 +0200 Subject: added dungeon boss damage indicator --- src/main/java/at/lorenz/mod/config/Features.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/lorenz/mod/config/Features.java') diff --git a/src/main/java/at/lorenz/mod/config/Features.java b/src/main/java/at/lorenz/mod/config/Features.java index 327aa2bcb..d4c1e6014 100644 --- a/src/main/java/at/lorenz/mod/config/Features.java +++ b/src/main/java/at/lorenz/mod/config/Features.java @@ -116,6 +116,11 @@ public class Features { @ConfigOption(name = "Clicked Blocks", desc = "Highlight the following blocks when clicked in dungeon: Lever, Chest, Wither Essence") @ConfigEditorBoolean public boolean highlightClickedBlocks = false; + + @Expose + @ConfigOption(name = "Boss Damage Indicator", desc = "Shows the missing health of a boss in the dungeon and the cooldown time until the boss becomes attackable.") + @ConfigEditorBoolean + public boolean bossDamageIndicator = false; } public static class Inventory { -- cgit