Skip to content

Commit

Permalink
fix: deadlock in early postprocessing
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Dec 12, 2024
1 parent ded4b59 commit 7cc48ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class MixinServerAccessibleChunkSending {

@Inject(method = "<clinit>", at = @At("RETURN"))
private static void onCLInit(CallbackInfo ci) {
NewChunkStatus depStatus = NewChunkStatus.fromVanillaStatus(ChunkStatus.LIGHT);
NewChunkStatus depStatus = NewChunkStatus.fromVanillaStatus(ChunkStatus.FULL);
deps = new KeyStatusPair[]{
new KeyStatusPair<>(new ChunkPos(-1, -1), depStatus),
new KeyStatusPair<>(new ChunkPos(-1, 0), depStatus),
Expand Down

0 comments on commit 7cc48ce

Please sign in to comment.