Skip to content

Commit 43fbb0e

Browse files
committed
fix: only apply block mixin on 1.8.9
1 parent 4d6d3ab commit 43fbb0e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/club/sk1er/patcher/mixins/features/cropheight/BlockMixin_CropHitbox.java

+2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212

1313
@Mixin(Block.class)
1414
public class BlockMixin_CropHitbox {
15+
//#if MC==10809
1516
@Inject(method = "collisionRayTrace", at = @At("HEAD"))
1617
public void collisionRayTrace(World worldIn, BlockPos pos, Vec3 start, Vec3 end, CallbackInfoReturnable<MovingObjectPosition> cir) {
1718

1819
}
20+
//#endif
1921
}

0 commit comments

Comments
 (0)