fix comment

This commit is contained in:
noil 2019-11-17 18:44:30 -05:00
parent 1d22f8bf2b
commit b91cfa4fcf
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public final class ElytraFlyModule extends Module {
if (this.autoStart.getBoolean()) {
if (mc.gameSettings.keyBindJump.isKeyDown() && !mc.player.isElytraFlying()) { // jump is held, player is not elytra flying
if (mc.player.motionY < 0) { // player motion is falling
if (this.timer.passed(250)) { // 100 ms
if (this.timer.passed(250)) { // 250 ms
mc.getConnection().sendPacket(new CPacketEntityAction(mc.player, CPacketEntityAction.Action.START_FALL_FLYING));
this.timer.reset();
}