Support Minecraft 1.9.2

This commit is contained in:
Thinkofname 2016-03-30 16:51:22 +01:00
parent 23ce4d1b96
commit 7fc5cd856e
2 changed files with 4 additions and 2 deletions

View File

@ -64,7 +64,7 @@
+ }
+ // CraftBukkit end
+
+ if (packethandshakinginsetprotocol.b() > 108) {
+ if (packethandshakinginsetprotocol.b() > 109) {
chatcomponenttext = new ChatComponentText("Outdated server! I\'m still on 1.9");
this.b.sendPacket(new PacketLoginOutDisconnect(chatcomponenttext));
this.b.close(chatcomponenttext);

View File

@ -17,7 +17,7 @@
public class PacketStatusListener implements PacketStatusInListener {
private static final IChatBaseComponent a = new ChatComponentText("Status request has been handled.");
@@ -19,8 +30,99 @@
@@ -19,8 +30,101 @@
this.networkManager.close(PacketStatusListener.a);
} else {
this.d = true;
@ -109,6 +109,8 @@
+ int version = minecraftServer.getServerPing().getServerData().getProtocolVersion();
+ if (this.networkManager.channel.pipeline().get(PacketEncoder.class).version == 108) {
+ version = 108;
+ } else if (this.networkManager.channel.pipeline().get(PacketEncoder.class).version == 109) {
+ version = 109;
+ }
+ ping.setServerInfo(new ServerPing.ServerData(minecraftServer.getServerModName() + " " + minecraftServer.getVersion(), version));
+