remove unused setting
All checks were successful
/ Build BaseBand DSM & Broadway (push) Successful in 2m6s
All checks were successful
/ Build BaseBand DSM & Broadway (push) Successful in 2m6s
This commit is contained in:
parent
81eea75d3a
commit
94b0fcd657
1 changed files with 1 additions and 6 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue