Completely implemented new interpolation

This commit is contained in:
Anuken
2018-02-03 20:43:48 -05:00
parent 23c1edc3fa
commit da22f8fbce
8 changed files with 39 additions and 35 deletions

View File

@@ -142,7 +142,7 @@ public class Packets {
@Override
public void read(ByteBuffer buffer) {
data = new byte[SyncEntity.getWriteSize(Player.class)];
data = new byte[SyncEntity.getWriteSize(Player.class) + 8];
buffer.get(data);
}
}