Added 1.14.2 as NOT_SUPPORTED

1.14.2 is still a buggy update, and SpigotMC likely won't release an official build for it at all.
This commit is contained in:
Florian CUNY 2019-05-28 13:44:59 +02:00 committed by GitHub
parent 87e82f4d23
commit ffd151c881
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ public class ServerCompatibility {
/** /**
* The server software is not supported, even though BentoBox may work fine. * The server software is not supported, even though BentoBox may work fine.
* Issues are likely and won't receive any support. * Issues are likely and will receive limited support.
*/ */
NOT_SUPPORTED(true), NOT_SUPPORTED(true),
@ -101,7 +101,11 @@ public class ServerCompatibility {
/** /**
* @since 1.5.0 * @since 1.5.0
*/ */
V1_14_1(Compatibility.NOT_SUPPORTED); V1_14_1(Compatibility.NOT_SUPPORTED),
/**
* @since 1.5.0
*/
V1_14_2(Compatibility.NOT_SUPPORTED);
private Compatibility compatibility; private Compatibility compatibility;