Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
SymoHTL committed Apr 14, 2024
1 parent 076769e commit f986187
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
import org.spongepowered.asm.mixin.Shadow;

@Mixin(ClientPlayerEntity.class)
public class ClientPlayerEntityMixin extends AbstractClientPlayerEntity
implements IClientPlayerEntity {
public class ClientPlayerEntityMixin extends AbstractClientPlayerEntity {
@Shadow
@Final
protected MinecraftClient client;
Expand All @@ -35,10 +34,5 @@ public void setVelocityClient(double x, double y, double z) {
EventManager.fire(event);
super.setVelocityClient(event.getX(), event.getY(), event.getZ());
}

@Override
public boolean isTouchingWaterBypass() {
return super.isTouchingWater();
}
}

This file was deleted.

0 comments on commit f986187

Please sign in to comment.