Update to 1.21.10

This commit is contained in:
2025-10-16 00:04:04 +02:00
parent 180b7045c2
commit e34925a65e
11 changed files with 35 additions and 24 deletions

View File

@@ -9,8 +9,9 @@ import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
@Mixin(LivingEntity.class)
public abstract class LivingEntityMixin {
@Inject(method="isUsingRiptide", at=@At("HEAD"), cancellable = true)
public abstract class LivingEntityMixin
{
@Inject(method="isUsingRiptide", at=@At("HEAD"), cancellable=true)
private void isUsingRiptide(CallbackInfoReturnable<Boolean> cir)
{
LivingEntity entity = (LivingEntity)(Object)this;