Skip to content

Commit

Permalink
Bump min PE version, which fixes issues in older versions
Browse files Browse the repository at this point in the history
  • Loading branch information
libraryaddict committed Nov 24, 2024
1 parent 1051821 commit 8b08434
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ public static String getMinimumPacketEventsVersion() {
// This means we'll always fail a release check!
// But now that 2.5.0 has released, it'll update to the release build
// Then I changed this once again!
return "2.6.0";
return "2.6.1";
}

/**
* PacketEvents must have a build timestamp of this or more recent
*/
public static Instant getMinimumPacketEventsBuildTimestamp() {
// As taken from the most recent packetevents compiled jar
return Instant.ofEpochMilli(1730661163638L);
return Instant.ofEpochMilli(1731857858229L);
}

public static boolean isPacketEventsOutdated(Instant requiredTime) {
Expand Down

0 comments on commit 8b08434

Please sign in to comment.