mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-04 12:51:09 -05:00
Update to MC 1.10
This commit is contained in:
parent
0e05503348
commit
8bd59d7138
2 changed files with 3 additions and 2 deletions
|
@ -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";
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue