diff --git a/src/main/java/net/wurstclient/commands/VClipCmd.java b/src/main/java/net/wurstclient/commands/VClipCmd.java index 0651ccbbb0..9999e39880 100644 --- a/src/main/java/net/wurstclient/commands/VClipCmd.java +++ b/src/main/java/net/wurstclient/commands/VClipCmd.java @@ -16,6 +16,7 @@ import net.wurstclient.command.CmdSyntaxError; import net.wurstclient.command.Command; import net.wurstclient.util.MathUtils; +import net.wurstclient.WurstClient; public final class VClipCmd extends Command { @@ -108,5 +109,10 @@ private void vclip(double height) { ClientPlayerEntity p = MC.player; p.setPosition(p.getX(), p.getY() + height, p.getZ()); + if(WurstClient.INSTANCE.getHax().jesusHack.isEnabled()) + { + while(WurstClient.INSTANCE.getHax().jesusHack.isOverLiquid()) + p.setPosition(p.getX(), p.getY() + 1, p.getZ()); + } } }