Skip to content

Commit

Permalink
fix: attempt to mitigate portal visual issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Nov 30, 2024
1 parent d32f47f commit 345df63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public CompletionStage<Void> upgradeToThis(ChunkLoadingContext context, Cancella
((IThreadedAnvilChunkStorage) context.tacs()).setChunkHolderListDirty(true);

if (needSendChunks()) {
sendChunkToPlayer(context.tacs(), context.holder());
context.holder().submitOp(CompletableFuture.runAsync(() -> sendChunkToPlayer(context.tacs(), context.holder()), ((IThreadedAnvilChunkStorage) context.tacs()).getMainThreadExecutor()));
}
}
}, ((IThreadedAnvilChunkStorage) context.tacs()).getMainThreadExecutor());
Expand Down

0 comments on commit 345df63

Please sign in to comment.