Skip to content

Commit

Permalink
Add extra case
Browse files Browse the repository at this point in the history
  • Loading branch information
lowercasebtw committed Dec 13, 2024
1 parent 0e995a8 commit 013eaea
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/me/mixces/animatium/Animatium.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ public static boolean shouldApplyOldSneaking() {

if ((brand.toLowerCase().contains("hypixel") || brand.toLowerCase().contains("hygot"))) {
return true;
} else if (brand.contains("1.8")) {
return true;
} else {
ServerInfo serverInfo = networkHandler.getServerInfo();
return serverInfo != null && serverInfo.address.contains("loyisa");
Expand Down

0 comments on commit 013eaea

Please sign in to comment.