Improve Legacy Component serialization size

Don't constantly send format: false for all formatting options when parent already
has it false

Fixes #3680
This commit is contained in:
Aikar
2020-06-28 21:27:16 -04:00
parent 8e46a01608
commit c4520e6199
2 changed files with 59 additions and 1 deletions

View File

@@ -87,7 +87,9 @@ fi
# JVM FLAGS
#
cp "$jar" paper.jar
if [ -f "$jar" ]; then
cp "$jar" paper.jar
fi
baseargs="-server -Xms${PAPER_MIN_TEST_MEMORY:-512M} -Xmx${PAPER_TEST_MEMORY:-2G} -Dfile.encoding=UTF-8 -XX:MaxGCPauseMillis=150 -XX:+UseG1GC "
baseargs="$baseargs -DIReallyKnowWhatIAmDoingISwear=1 "
baseargs="$baseargs -XX:+UnlockExperimentalVMOptions -XX:G1NewSizePercent=40 -XX:G1MaxNewSizePercent=60 "