Skip to content

Commit

Permalink
Fixed a bug that made the addon not working in some cases.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmbRandy committed Dec 3, 2023
1 parent 9ebacc2 commit 7420129
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "tmb.randy"
version = "1.1"
version = "1.1.1"

java.toolchain.languageVersion.set(JavaLanguageVersion.of(17))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static boolean isGG() {
return false;
}

return Objects.requireNonNull(Laby.labyAPI().serverController().getCurrentServerData()).getName().equals("GrieferGames");
return Objects.requireNonNull(Laby.labyAPI().serverController().getCurrentServerData()).address().getHost().equals("griefergames.net");
}

public IBridge getBridge() {
Expand Down

0 comments on commit 7420129

Please sign in to comment.