Fix client crash caused by boat interaction fix

This commit is contained in:
RaphiMC 2024-08-04 21:28:17 +02:00
parent 21b03dbc80
commit bb052fbdfe
No known key found for this signature in database
GPG Key ID: 0F6BB0657A03AC94

View File

@ -93,7 +93,7 @@ public abstract class MixinBoatEntity extends VehicleEntity {
if (ProtocolTranslator.getTargetVersion().olderThanOrEqualTo(ProtocolVersion.v1_20_5)) {
return ActionResult.PASS;
} else {
return instance.interact(player, hand);
return super.interact(player, hand);
}
}