Skip to content

Commit 8201696

Browse files
committed
Merge remote-tracking branch 'origin/1.20' into 1.21
2 parents 512a7e2 + 75ff154 commit 8201696

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/org/embeddedt/modernfix/common/mixin/perf/chunk_meshing/RebuildTaskMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class RebuildTaskMixin {
1515
* @author embeddedt
1616
* @reason Use a much faster iterator implementation than vanilla's Guava-based one.
1717
*/
18-
@Redirect(method = "compile", at = @At(value = "INVOKE", target = "Lnet/minecraft/core/BlockPos;betweenClosed(Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Iterable;"))
18+
@Redirect(method = "compile", at = @At(value = "INVOKE", target = "Lnet/minecraft/core/BlockPos;betweenClosed(Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Iterable;"), require = 0)
1919
private Iterable<BlockPos> fastBetweenClosed(BlockPos firstPos, BlockPos secondPos) {
2020
return () -> new SectionBlockPosIterator(firstPos);
2121
}

0 commit comments

Comments
 (0)