1.8.8 -> 1.9.4, fix hand item being sent in different tick

This commit is contained in:
Myles 2017-04-20 22:03:09 +01:00
parent a5dddf371d
commit a9831c842c
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ public class SpawnPackets {
packet.write(Type.VAR_INT, 0);
packet.write(Type.ITEM, new Item(item, (byte) 1, (short) 0, null));
try {
packet.send(Protocol1_9TO1_8.class);
packet.send(Protocol1_9TO1_8.class, true, true);
} catch (Exception e) {
e.printStackTrace();
}