mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
minor nms tweak
This commit is contained in:
parent
2810d36e08
commit
621ccfed34
@ -122,6 +122,8 @@ public class CompatibilityManager {
|
|||||||
return NMSVersion.NMS_1_16_1;
|
return NMSVersion.NMS_1_16_1;
|
||||||
} else if(minecraftGameVersion.getPatchVersion().asInt() == 2) {
|
} else if(minecraftGameVersion.getPatchVersion().asInt() == 2) {
|
||||||
return NMSVersion.NMS_1_16_2;
|
return NMSVersion.NMS_1_16_2;
|
||||||
|
} else if(minecraftGameVersion.getPatchVersion().asInt() == 3) {
|
||||||
|
return NMSVersion.NMS_1_16_3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,7 @@ public enum NMSVersion {
|
|||||||
//1.16
|
//1.16
|
||||||
NMS_1_16_1("1.16.1"),
|
NMS_1_16_1("1.16.1"),
|
||||||
NMS_1_16_2("1.16.2"),
|
NMS_1_16_2("1.16.2"),
|
||||||
|
NMS_1_16_3("1.16.3"),
|
||||||
|
|
||||||
//Version not known to this build of mcMMO
|
//Version not known to this build of mcMMO
|
||||||
UNSUPPORTED("unsupported");
|
UNSUPPORTED("unsupported");
|
||||||
|
Loading…
Reference in New Issue
Block a user