summaryrefslogtreecommitdiff
path: root/src/main/java/at/lorenz/mod/config
diff options
context:
space:
mode:
authorLorenz <ESs95s3P5z8Pheb>2022-07-09 04:18:07 +0200
committerLorenz <ESs95s3P5z8Pheb>2022-07-09 04:18:07 +0200
commita193bdca479ae7531da6f034c597335918b52699 (patch)
treebf8d56f262842d243a2628befc3360801edda8a5 /src/main/java/at/lorenz/mod/config
parentf842a84e3aae31e5fe84b52f23550efca526f6aa (diff)
downloadskyhanni-a193bdca479ae7531da6f034c597335918b52699.tar.gz
skyhanni-a193bdca479ae7531da6f034c597335918b52699.tar.bz2
skyhanni-a193bdca479ae7531da6f034c597335918b52699.zip
added dungeon boss damage indicator
Diffstat (limited to 'src/main/java/at/lorenz/mod/config')
-rw-r--r--src/main/java/at/lorenz/mod/config/Features.java5
1 files changed, 5 insertions, 0 deletions
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 {