Don't send connected in grid, it's provided as a block update already. 0.8.14 done

This commit is contained in:
Raoul Van den Berge
2016-08-01 16:12:34 +02:00
parent 9ebd5b31b6
commit 4b421734d3

View File

@@ -387,7 +387,6 @@ public class TileGrid extends TileNode implements IGrid {
public void writeContainerData(ByteBuf buf) {
super.writeContainerData(buf);
buf.writeBoolean(isConnected());
buf.writeInt(viewType);
buf.writeInt(sortingDirection);
buf.writeInt(sortingType);
@@ -398,7 +397,6 @@ public class TileGrid extends TileNode implements IGrid {
public void readContainerData(ByteBuf buf) {
super.readContainerData(buf);
connected = buf.readBoolean();
viewType = buf.readInt();
sortingDirection = buf.readInt();
sortingType = buf.readInt();