Update supported version to 1.16.3

Nothing got changed in 1.16.3
This commit is contained in:
ReinforceZwei 2020-09-11 22:58:10 +08:00 committed by ORelio
parent 7e20e409a8
commit 9bfb2bf6c7
4 changed files with 12 additions and 9 deletions

View file

@ -46,6 +46,7 @@ namespace MinecraftClient.Protocol.Handlers
internal const int MC116Version = 735;
internal const int MC1161Version = 736;
internal const int MC1162Version = 751;
internal const int MC1163Version = 753;
private int compression_treshold = 0;
private bool autocomplete_received = false;
@ -84,13 +85,13 @@ namespace MinecraftClient.Protocol.Handlers
handler.SetTerrainEnabled(false);
}
if (handler.GetInventoryEnabled() && (protocolversion < MC110Version || protocolversion > MC1162Version))
if (handler.GetInventoryEnabled() && (protocolversion < MC110Version || protocolversion > MC1163Version))
{
ConsoleIO.WriteLineFormatted("§8Inventories are currently not handled for that MC version.");
handler.SetInventoryEnabled(false);
}
if (handler.GetEntityHandlingEnabled() && (protocolversion < MC110Version || protocolversion > MC1162Version))
if (handler.GetEntityHandlingEnabled() && (protocolversion < MC110Version || protocolversion > MC1163Version))
{
ConsoleIO.WriteLineFormatted("§8Entities are currently not handled for that MC version.");
handler.SetEntityHandlingEnabled(false);
@ -112,9 +113,9 @@ namespace MinecraftClient.Protocol.Handlers
// Entity palette
if (protocolversion >= MC113Version)
{
if (protocolversion > MC1162Version && handler.GetEntityHandlingEnabled())
if (protocolversion > MC1163Version && handler.GetEntityHandlingEnabled())
throw new NotImplementedException("Please update entity types handling for this Minecraft version. See EntityType.cs");
if (protocolversion >= MC1162Version)
if (protocolversion >= MC1163Version)
entityPalette = new EntityPalette1162();
else if (protocolversion >= MC116Version)
entityPalette = new EntityPalette1161();
@ -129,9 +130,9 @@ namespace MinecraftClient.Protocol.Handlers
// Item palette
if (protocolversion >= MC116Version)
{
if (protocolversion > MC1162Version && handler.GetInventoryEnabled())
if (protocolversion > MC1163Version && handler.GetInventoryEnabled())
throw new NotImplementedException("Please update item types handling for this Minecraft version. See ItemType.cs");
if (protocolversion >= MC1162Version)
if (protocolversion >= MC1163Version)
itemPalette = new ItemPalette1162();
else itemPalette = new ItemPalette1161();
}