Update to 1.14.3

This commit is contained in:
Jonas Herzig 2019-06-24 17:43:41 +02:00
parent 520589e647
commit 0dc580ee23
3 changed files with 12 additions and 4 deletions

View file

@ -5,7 +5,7 @@
<groupId>com.github.steveice10</groupId>
<artifactId>mcprotocollib</artifactId>
<version>1.14.2-SNAPSHOT</version>
<version>1.14.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>MCProtocolLib</name>

View file

@ -2,8 +2,8 @@ package com.github.steveice10.mc.protocol;
public class MinecraftConstants {
// General Constants
public static final String GAME_VERSION = "1.14.2";
public static final int PROTOCOL_VERSION = 485;
public static final String GAME_VERSION = "1.14.3";
public static final int PROTOCOL_VERSION = 490;
// General Key Constants
public static final String PROFILE_KEY = "profile";

View file

@ -16,16 +16,18 @@ public class ServerTradeListPacket extends MinecraftPacket {
private int villagerLevel;
private int experience;
private boolean isRegularVillager;
private boolean canRestock;
public ServerTradeListPacket() {
}
public ServerTradeListPacket(int windowId, VillagerTrade[] trades, int villagerLevel, int experience, boolean isRegularVillager) {
public ServerTradeListPacket(int windowId, VillagerTrade[] trades, int villagerLevel, int experience, boolean isRegularVillager, boolean canRestock) {
this.windowId = windowId;
this.trades = trades;
this.villagerLevel = villagerLevel;
this.experience = experience;
this.isRegularVillager = isRegularVillager;
this.canRestock = canRestock;
}
public int getWindowId() {
@ -48,6 +50,10 @@ public class ServerTradeListPacket extends MinecraftPacket {
return isRegularVillager;
}
public boolean canRestock() {
return canRestock;
}
@Override
public void read(NetInput in) throws IOException {
this.windowId = in.readVarInt();
@ -76,6 +82,7 @@ public class ServerTradeListPacket extends MinecraftPacket {
this.villagerLevel = in.readVarInt();
this.experience = in.readVarInt();
this.isRegularVillager = in.readBoolean();
this.canRestock = in.readBoolean();
}
@Override
@ -106,5 +113,6 @@ public class ServerTradeListPacket extends MinecraftPacket {
out.writeVarInt(this.villagerLevel);
out.writeVarInt(this.experience);
out.writeBoolean(this.isRegularVillager);
out.writeBoolean(this.canRestock);
}
}