diff options
author | Lorenz <lo.scherf@gmail.com> | 2022-08-07 03:40:07 +0200 |
---|---|---|
committer | Lorenz <lo.scherf@gmail.com> | 2022-08-07 03:40:07 +0200 |
commit | 5af4f0f0f4939e4d969f33440966c886db06a1b9 (patch) | |
tree | 1194f5598125fc110793bd345da83df0dd75521c /src/main | |
parent | 336266ad88396d8df795f7a429174c5a010c1658 (diff) | |
download | skyhanni-5af4f0f0f4939e4d969f33440966c886db06a1b9.tar.gz skyhanni-5af4f0f0f4939e4d969f33440966c886db06a1b9.tar.bz2 skyhanni-5af4f0f0f4939e4d969f33440966c886db06a1b9.zip |
typos
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 4 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/damageindicator/BossDamageIndicator.kt | 2 |
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() |