Good evening.
I am trying to send a int[][] from server to client using Kryonet. The size of array is 256x256, but is the same if i use an 1x1 array.
The problem is that if i try to send the “Level” object, the connection stops (after x seconds, the client is disconnected, but server still thinks that he is still connected). I have tried using a byte[][] and a byte[], but nothing changes. The array values are between 0 and 6.
This is my Object:
public static class Packet0Level {
public int[][] map;
}