Lowered class registration frame size to fix potential UDP issues

This commit is contained in:
nathan 2019-06-13 21:24:53 +02:00
parent b4ff95b496
commit b09ce4c650

View File

@ -337,7 +337,7 @@ class RegistrationWrapper {
// it is too large to send in a single packet
// child arrays have index 0 also as their 'index' and 1 is the total number of fragments
byte[][] fragments = divideArray(details, 480);
byte[][] fragments = divideArray(details, 400);
if (fragments == null) {
logger.error("Too many classes have been registered for Serialization. Please report this issue");