Fix crop block mixin cancellable

This commit is contained in:
IzzelAliz 2021-12-11 20:30:50 +08:00
parent 1266a3af6d
commit 5676c9320b
No known key found for this signature in database
GPG Key ID: EE50E123A11D8338

View File

@ -40,7 +40,7 @@ public class CropBlockMixin {
return CraftEventFactory.handleBlockGrowEvent(world, pos, newState, flags);
}
@Inject(method = "getGrowthSpeed", at = @At("RETURN"))
@Inject(method = "getGrowthSpeed", cancellable = true, at = @At("RETURN"))
private static void arclight$spigotModifier(Block block, BlockGetter blockGetter, BlockPos pos, CallbackInfoReturnable<Float> cir) {
if (blockGetter instanceof WorldBridge bridge) {
int modifier;