We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b7bb0c + c91306c commit 934f148Copy full SHA for 934f148
src/main/kotlin/com/lambda/client/gui/hudgui/elements/world/Coordinates.kt
@@ -37,12 +37,12 @@ internal object Coordinates : LabelHud(
37
if (showNetherOverworld) {
38
when (world.provider.dimension) {
39
-1 -> { // Nether
40
- if (printDimensionName) displayText.add("Nether", secondaryColor)
+ if (printDimensionName) displayText.add("Overworld", secondaryColor)
41
displayText.add(getFormattedCoords(entity.positionVector * netherToOverworld, true))
42
}
43
0 -> { // Overworld
44
if (printDimensionName)
45
- displayText.add("Overworld", secondaryColor)
+ displayText.add("Nether", secondaryColor)
46
displayText.add(getFormattedCoords(entity.positionVector * overworldToNether, true))
47
48
0 commit comments