From c91306c7150b199f167abc8858af4c657d32d16a Mon Sep 17 00:00:00 2001 From: rfresh2 <89827146+rfresh2@users.noreply.github.com> Date: Sat, 22 Jul 2023 23:32:44 -0700 Subject: [PATCH] fix mismatched dimension name in hud --- .../lambda/client/gui/hudgui/elements/world/Coordinates.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/lambda/client/gui/hudgui/elements/world/Coordinates.kt b/src/main/kotlin/com/lambda/client/gui/hudgui/elements/world/Coordinates.kt index 3df781af3..f1e8aa724 100644 --- a/src/main/kotlin/com/lambda/client/gui/hudgui/elements/world/Coordinates.kt +++ b/src/main/kotlin/com/lambda/client/gui/hudgui/elements/world/Coordinates.kt @@ -37,12 +37,12 @@ internal object Coordinates : LabelHud( if (showNetherOverworld) { when (world.provider.dimension) { -1 -> { // Nether - if (printDimensionName) displayText.add("Nether", secondaryColor) + if (printDimensionName) displayText.add("Overworld", secondaryColor) displayText.add(getFormattedCoords(entity.positionVector * netherToOverworld, true)) } 0 -> { // Overworld if (printDimensionName) - displayText.add("Overworld", secondaryColor) + displayText.add("Nether", secondaryColor) displayText.add(getFormattedCoords(entity.positionVector * overworldToNether, true)) } }