Bump required PE version to avoid an issue most players are having with datapacks

This commit is contained in:
libraryaddict 2024-08-13 20:41:52 +12:00
parent 32dd420126
commit fd055be501

View File

@ -57,10 +57,11 @@ public class PacketEventsUpdater {
*/ */
public static String getMinimumPacketEventsVersion() { public static String getMinimumPacketEventsVersion() {
// Unfortunately PacketEvents does not have build info, so we'll hope you are using the latest snapshot if we fallback to that // Unfortunately PacketEvents does not have build info, so we'll hope you are using the latest snapshot if we fallback to that
// Edit, it now includes build time which we'll use at a later point in the future
// At time of writing, release is 2.3.0, and snapshot builds are all "2.3.1-SNAPSHOT" // At time of writing, release is 2.4.0, and snapshot builds are all "2.5.0-SNAPSHOT"
// This means we'll always fail a release check! // This means we'll always fail a release check!
return "2.4.0"; return "2.5.0";
} }
private boolean isNotBukkitPlugin(String name) { private boolean isNotBukkitPlugin(String name) {