mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-31 12:23:51 -07:00
Update to Minecraft 1.9.2
This commit is contained in:
@@ -109,8 +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;
|
||||
+ } else if (this.networkManager.channel.pipeline().get(PacketEncoder.class).version == 107) {
|
||||
+ version = 107;
|
||||
+ }
|
||||
+ ping.setServerInfo(new ServerPing.ServerData(minecraftServer.getServerModName() + " " + minecraftServer.getVersion(), version));
|
||||
+
|
||||
|
Reference in New Issue
Block a user