Răsfoiți Sursa

Revert "Remove locals requirements from BlockLandingInvoker"

This reverts commit 0eb7bd5b
shedaniel 4 ani în urmă
părinte
comite
927bd08f8c

+ 2 - 1
common/src/main/java/me/shedaniel/architectury/mixin/BlockLandingInvoker.java

@@ -31,10 +31,11 @@ import org.spongepowered.asm.mixin.Mixin;
 import org.spongepowered.asm.mixin.injection.At;
 import org.spongepowered.asm.mixin.injection.Inject;
 import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
+import org.spongepowered.asm.mixin.injection.callback.LocalCapture;
 
 @Mixin({FallingBlock.class, AnvilBlock.class, ConcretePowderBlock.class})
 public abstract class BlockLandingInvoker {
-    @Inject(method = "onLand", at = @At("RETURN"))
+    @Inject(method = "onLand", at = @At("RETURN"), locals = LocalCapture.CAPTURE_FAILHARD)
     public void handleLand(Level level, BlockPos pos, BlockState fallState, BlockState landOn, FallingBlockEntity entity, CallbackInfo ci) {
         BlockEvent.FALLING_LAND.invoker().onLand(level, pos, fallState, landOn, entity);
     }