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 5fb9f5b + 7d3efb3 commit fcff994Copy full SHA for fcff994
src/main/java/me/xmrvizzy/skyblocker/utils/Utils.java
@@ -129,7 +129,7 @@ public static void updateFromScoreboard(MinecraftClient client) {
129
return;
130
}
131
String string = sidebar.toString();
132
- String serverAddress = (client.getCurrentServerEntry() != null) ? client.getCurrentServerEntry().address : "";
+ String serverAddress = (client.getCurrentServerEntry() != null) ? client.getCurrentServerEntry().address.toLowerCase() : "";
133
134
if (sidebar.isEmpty()) return;
135
if (serverAddress.contains("hypixel.net") || serverAddress.contains("hypixel.io")) {
@@ -320,4 +320,4 @@ private static void resetLocRawInfo() {
320
locationRaw = "";
321
map = "";
322
323
-}
+}
0 commit comments