Skip to content

Commit 934f148

Browse files
authored
Merge pull request #572 from rfresh2/dim-fix1
2 parents 7b7bb0c + c91306c commit 934f148

File tree

1 file changed

+2
-2
lines changed
  • src/main/kotlin/com/lambda/client/gui/hudgui/elements/world

1 file changed

+2
-2
lines changed

src/main/kotlin/com/lambda/client/gui/hudgui/elements/world/Coordinates.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ internal object Coordinates : LabelHud(
3737
if (showNetherOverworld) {
3838
when (world.provider.dimension) {
3939
-1 -> { // Nether
40-
if (printDimensionName) displayText.add("Nether", secondaryColor)
40+
if (printDimensionName) displayText.add("Overworld", secondaryColor)
4141
displayText.add(getFormattedCoords(entity.positionVector * netherToOverworld, true))
4242
}
4343
0 -> { // Overworld
4444
if (printDimensionName)
45-
displayText.add("Overworld", secondaryColor)
45+
displayText.add("Nether", secondaryColor)
4646
displayText.add(getFormattedCoords(entity.positionVector * overworldToNether, true))
4747
}
4848
}

0 commit comments

Comments
 (0)