13
0
geforkt von Mirrors/Paper

Add missing return when datafixers fail for chunk conversion

Caused the chunk to be later deserialized, which would
result in spamming unrelated errors (possibly) +
double chunk completion.
Dieser Commit ist enthalten in:
Spottedleaf 2021-12-17 06:55:16 -08:00
Ursprung 8671893fb5
Commit 1deca8eab9

Datei anzeigen

@ -1544,6 +1544,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ } catch (final Throwable ex) { + } catch (final Throwable ex) {
+ PaperFileIOThread.LOGGER.error("Could not apply datafixers for chunk task: " + this.toString(), ex); + PaperFileIOThread.LOGGER.error("Could not apply datafixers for chunk task: " + this.toString(), ex);
+ this.complete(ChunkLoadTask.createEmptyHolder()); + this.complete(ChunkLoadTask.createEmptyHolder());
+ return;
+ } + }
+ +
+ if (this.checkCancelled()) { + if (this.checkCancelled()) {