aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-08-07 03:40:07 +0200
committerLorenz <lo.scherf@gmail.com>2022-08-07 03:40:07 +0200
commita2e56eb8f1eb8af23f1f0f862a8bad224e1f42c2 (patch)
tree1194f5598125fc110793bd345da83df0dd75521c
parenta3e9683b193c98353271dd623d350676f756445a (diff)
downloadSkyHanni-a2e56eb8f1eb8af23f1f0f862a8bad224e1f42c2.tar.gz
SkyHanni-a2e56eb8f1eb8af23f1f0f862a8bad224e1f42c2.tar.bz2
SkyHanni-a2e56eb8f1eb8af23f1f0f862a8bad224e1f42c2.zip
typos
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Misc.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/damageindicator/BossDamageIndicator.kt2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
index dcaf6a259..2ca4b690d 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
@@ -9,9 +9,9 @@ import com.google.gson.annotations.Expose;
public class Misc {
@Expose
- @ConfigOption(name = "Boss Damage Indicator", desc = "Show the missing health of a boss in the dungeon, of slayer bosses and other bosses and the cooldown time until the boss becomes attackable.")
+ @ConfigOption(name = "Damage Indicator", desc = "Show the missing health of a boss in the dungeon, of slayer bosses and other bosses and the cooldown time until the boss becomes attackable.")
@ConfigEditorBoolean
- public boolean bossDamageIndicator = false;
+ public boolean damageIndicator = false;
@Expose
@ConfigOption(name = "Pet Display", desc = "Show the currently active pet.")
diff --git a/src/main/java/at/hannibal2/skyhanni/damageindicator/BossDamageIndicator.kt b/src/main/java/at/hannibal2/skyhanni/damageindicator/BossDamageIndicator.kt
index 09032b6c3..e0b69d21c 100644
--- a/src/main/java/at/hannibal2/skyhanni/damageindicator/BossDamageIndicator.kt
+++ b/src/main/java/at/hannibal2/skyhanni/damageindicator/BossDamageIndicator.kt
@@ -40,7 +40,7 @@ class BossDamageIndicator {
@SubscribeEvent
fun onWorldRender(event: RenderWorldLastEvent) {
- if (!SkyHanniMod.feature.misc.bossDamageIndicator) return
+ if (!SkyHanniMod.feature.misc.damageIndicator) return
GlStateManager.disableDepth()
GlStateManager.disableCull()