Skip to content

Commit

Permalink
fix log message condition for 1.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Jan 4, 2025
1 parent f7ee43c commit 74cbccd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void onEnable() {
prefixedLogger.warn("Legacy is intended for Paper server versions 1.12 - 1.19.4.");
prefixedLogger.warn("Please use the Folia jar for your server to avoid issues due to old API calls.");
}
if (serverVersion.isOlderThanOrEquals(ServerVersion.V_1_12_2)) {
if (serverVersion.isOlderThan(ServerVersion.V_1_12_2)) {
prefixedLogger.warn("This version is officially unsupported. Expect issues.");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "me.xginko"
version = "2.7.3"
version = "2.7.4"
description = "Prevent many exploits that affect anarchy servers."
var url: String? = "github.com/xGinko/AnarchyExploitFixes"

Expand Down

0 comments on commit 74cbccd

Please sign in to comment.