remove unused setting
All checks were successful
/ Build BaseBand DSM & Broadway (push) Successful in 2m6s

This commit is contained in:
Daniella / Tove 2024-06-24 14:29:49 +02:00
parent 81eea75d3a
commit 94b0fcd657
Signed by: TudbuT
GPG key ID: B3CF345217F202D3

View file

@ -32,11 +32,6 @@ public class NoFall extends Feature {
@Marker(1)
boolean modeIsElytra = false;
@Config("Engage upon impact")
@Description("Runs in sync with outgoing packets instead of using a periodic check.")
@Gate(1)
public boolean engageOnImpact = false;
@Config("Disengage time")
@Description("Directly depends on how performant the server is. If it's always 20TPS, this can be 2, otherwise higher.")
@Range("2..10")
@ -107,7 +102,7 @@ public class NoFall extends Feature {
ranThisFall = false;
lastOnGround = mc.player.onGround;
lastFallDist = mc.player.fallDistance;
if(mode == Mode.Elytra && !engageOnImpact) {
if(mode == Mode.Elytra) {
int i;
for (i = 0; i < 256; i++) {
BlockPos down = mc.player.getPosition().down(i + 1);