diff options
author | J10a1n15 <45315647+j10a1n15@users.noreply.github.com> | 2024-03-14 21:03:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 21:03:58 +0100 |
commit | 849888602b882ba52a0db97aa541a991c132cfe5 (patch) | |
tree | 1e9e1ec982ec83a5415b883942b9a3de1efd8eb1 /src | |
parent | e0bfda736f6543398ed753e6a4bf24eb7985e94f (diff) | |
download | skyhanni-849888602b882ba52a0db97aa541a991c132cfe5.tar.gz skyhanni-849888602b882ba52a0db97aa541a991c132cfe5.tar.bz2 skyhanni-849888602b882ba52a0db97aa541a991c132cfe5.zip |
Fix: Fixed Hypixel Scoreboard never reappearing (#1170)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt index e0f260714..96e501d7c 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt @@ -132,8 +132,7 @@ class CustomScoreboard { @SubscribeEvent fun onRenderScoreboard(event: RenderGameOverlayEvent.Post) { if (event.type == RenderGameOverlayEvent.ElementType.HELMET) { - if (isHideVanillaScoreboardEnabled()) - GuiIngameForge.renderObjective = false + GuiIngameForge.renderObjective = !isHideVanillaScoreboardEnabled() } } |