Clarify nms and MC version comments

This commit is contained in:
libraryaddict 2023-04-24 23:55:35 +12:00
parent 6ea0c665d9
commit afa0d5de88
2 changed files with 5 additions and 5 deletions

View File

@ -588,12 +588,12 @@ public class DisguiseUtilities {
requiredVersion = new String[]{"4.8.0"};
}
// If you're on 1.19.0
// If you're on 1.19.1 or 1.19.2
if (NmsVersion.v1_19_R1.isSupported()) {
requiredVersion = new String[]{"5.0.1", "600"};
}
// If you're on 1.19.1 or 1.19.2
// If you're on 1.19.3
if (NmsVersion.v1_19_R2.isSupported()) {
requiredVersion = new String[]{"5.0.1", "630"};
}

View File

@ -11,9 +11,9 @@ public enum NmsVersion {
v1_16,
v1_17,
v1_18,
v1_19_R1,
v1_19_R2,
v1_19_R3,
v1_19_R1, // 1.19.0, 1.19.1, 1.19.2
v1_19_R2, // 1.19.3
v1_19_R3, // 1.19.4
UNSUPPORTED;
/**