Rename to control instead of vanillaplus

This commit is contained in:
Alex 2020-04-21 23:10:45 +02:00
parent e6d851584e
commit 1355eb090c
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ public final class ElytraFlyModule extends Module {
public final Value<Mode> mode = new Value<Mode>("Mode", new String[]{"Mode", "M"}, "Mode to use for elytra flight.", Mode.VANILLA);
private enum Mode {
VANILLA, PACKET, BYPASS, VANILLAPLUS
VANILLA, PACKET, BYPASS, CONTROL
}
public final Value<Float> speed = new Value<Float>("Speed", new String[]{"Spd"}, "Speed multiplier for elytra flight, higher values equals more speed.", 1.0f, 0.0f, 5.0f, 0.01f);
@ -167,7 +167,7 @@ public final class ElytraFlyModule extends Module {
mc.player.motionZ = 0;
}
break;
case VANILLAPLUS:
case CONTROL:
if (mc.gameSettings.keyBindJump.isKeyDown()) {
mc.player.motionY = this.speed.getValue() / 2;