Update Upstream

ed28089 Don't crash if fields are null in ChunkDeleter (1874)
f049d56 Revert "Use a Guava Cache instead of a ThreadLocal (1859)"
c5a4450 Internally use a negated mask class to prevent russian doll wrapping (1877)
1397ec7 Add Snow Smooth Tools (1580)

Fixes #955
Fixes #858
This commit is contained in:
NotMyFault
2021-08-22 11:56:39 +02:00
parent df8b2802b2
commit cf671ad7ff
11 changed files with 540 additions and 63 deletions

View File

@ -58,7 +58,7 @@ public final class ChunkDeleter {
);
private static final Gson chunkDeleterGson = new GsonBuilder()
.registerTypeAdapter(BlockVector2.class, new BlockVector2Adapter())
.registerTypeAdapter(BlockVector2.class, new BlockVector2Adapter().nullSafe())
.setPrettyPrinting()
.create();