mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 12:27:59 +01:00
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.
This commit is contained in:
parent
8671893fb5
commit
1deca8eab9
@ -1544,6 +1544,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ } catch (final Throwable ex) {
|
||||
+ PaperFileIOThread.LOGGER.error("Could not apply datafixers for chunk task: " + this.toString(), ex);
|
||||
+ this.complete(ChunkLoadTask.createEmptyHolder());
|
||||
+ return;
|
||||
+ }
|
||||
+
|
||||
+ if (this.checkCancelled()) {
|
||||
|
Loading…
Reference in New Issue
Block a user