Increased max packet size to 1024

This commit is contained in:
Anuken
2018-06-06 21:07:53 -04:00
parent c443eee15d
commit ab9cdf5610
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ import java.util.stream.Collectors;
})
public class RemoteMethodAnnotationProcessor extends AbstractProcessor {
/**Maximum size of each event packet.*/
public static final int maxPacketSize = 512;
public static final int maxPacketSize = 1024;
/**Name of the base package to put all the generated classes.*/
private static final String packageName = "io.anuke.mindustry.gen";