[Merge] Add support of 1.14 with ViaVersion extension. (#1031)

This commit is contained in:
Aurélien 2019-05-07 08:01:44 +02:00 committed by Risto Lahtela
parent 1b994a3575
commit 8dba6f6983
1 changed files with 3 additions and 1 deletions

View File

@ -36,6 +36,8 @@ public class Protocol {
*/
public static String getMCVersion(int protocolVersion) {
switch (protocolVersion) {
case 477:
return "1.14"
case 404:
return "1.13.2";
case 401:
@ -67,7 +69,7 @@ public class Protocol {
case 4:
return "1.7.5";
default:
return "Newer than 1.13.2 (" + protocolVersion + ")";
return "Newer than 1.14 (" + protocolVersion + ")";
}
}
}