Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ private enum Mode
{ "Res" }, "Stops current block destroy damage from resetting if enabled.", true);
public final Value<Boolean> doubleBreak = new Value<Boolean>("DoubleBreak", new String[]
{ "DoubleBreak", "Double", "DB" }, "Mining a block will also mine the block above it, if enabled.", false);
public final Value<Boolean> FastFall = new Value<Boolean>("FastFall", new String[]
{ "FF" }, "Makes it so you fall faster.", false);

public SpeedyGonzales()
{
Expand All @@ -57,12 +55,7 @@ public String getMetaData()
{
mc.playerController.isHittingBlock = false;
}

if (FastFall.getValue())
{
if (mc.player.onGround)
--mc.player.motionY;
}

});

@EventHandler
Expand Down