From 5af4f0f0f4939e4d969f33440966c886db06a1b9 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Sun, 7 Aug 2022 03:40:07 +0200 Subject: typos --- src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 4 ++-- .../java/at/hannibal2/skyhanni/damageindicator/BossDamageIndicator.kt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main') 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() -- cgit