Minecraft 1.14.1 support
This commit is contained in:
parent
086eb847ec
commit
3ec223ec94
@ -21,6 +21,7 @@ public class ProtocolConstants
|
|||||||
public static final int MINECRAFT_1_13_1 = 401;
|
public static final int MINECRAFT_1_13_1 = 401;
|
||||||
public static final int MINECRAFT_1_13_2 = 404;
|
public static final int MINECRAFT_1_13_2 = 404;
|
||||||
public static final int MINECRAFT_1_14 = 477;
|
public static final int MINECRAFT_1_14 = 477;
|
||||||
|
public static final int MINECRAFT_1_14_1 = 480;
|
||||||
public static final List<String> SUPPORTED_VERSIONS = Arrays.asList(
|
public static final List<String> SUPPORTED_VERSIONS = Arrays.asList(
|
||||||
"1.8.x",
|
"1.8.x",
|
||||||
"1.9.x",
|
"1.9.x",
|
||||||
@ -45,7 +46,8 @@ public class ProtocolConstants
|
|||||||
ProtocolConstants.MINECRAFT_1_13,
|
ProtocolConstants.MINECRAFT_1_13,
|
||||||
ProtocolConstants.MINECRAFT_1_13_1,
|
ProtocolConstants.MINECRAFT_1_13_1,
|
||||||
ProtocolConstants.MINECRAFT_1_13_2,
|
ProtocolConstants.MINECRAFT_1_13_2,
|
||||||
ProtocolConstants.MINECRAFT_1_14
|
ProtocolConstants.MINECRAFT_1_14,
|
||||||
|
ProtocolConstants.MINECRAFT_1_14_1
|
||||||
);
|
);
|
||||||
|
|
||||||
public enum Direction
|
public enum Direction
|
||||||
|
@ -52,6 +52,7 @@ public abstract class EntityMap
|
|||||||
case ProtocolConstants.MINECRAFT_1_13_2:
|
case ProtocolConstants.MINECRAFT_1_13_2:
|
||||||
return EntityMap_1_13.INSTANCE;
|
return EntityMap_1_13.INSTANCE;
|
||||||
case ProtocolConstants.MINECRAFT_1_14:
|
case ProtocolConstants.MINECRAFT_1_14:
|
||||||
|
case ProtocolConstants.MINECRAFT_1_14_1:
|
||||||
return EntityMap_1_14.INSTANCE;
|
return EntityMap_1_14.INSTANCE;
|
||||||
}
|
}
|
||||||
throw new RuntimeException( "Version " + version + " has no entity map" );
|
throw new RuntimeException( "Version " + version + " has no entity map" );
|
||||||
|
Loading…
Reference in New Issue
Block a user