Update to MC 1.10

This commit is contained in:
Final Child 2016-06-09 17:47:46 +09:00
parent 0e05503348
commit 8bd59d7138
2 changed files with 3 additions and 2 deletions

View file

@ -2,8 +2,8 @@ package org.spacehq.mc.protocol;
public class MinecraftConstants {
// General Constants
public static final String GAME_VERSION = "1.10-pre1";
public static final int PROTOCOL_VERSION = 204;
public static final String GAME_VERSION = "1.10";
public static final int PROTOCOL_VERSION = 210;
// General Key Constants
public static final String PROFILE_KEY = "profile";

View file

@ -70,6 +70,7 @@ public class ServerPlayBuiltinSoundPacket implements Packet {
this.y = in.readInt() / 8D;
this.z = in.readInt() / 8D;
this.volume = in.readFloat();
this.pitch = in.readFloat();
}
@Override