Skip to content

Commit 3ee5d93

Browse files
committed
fix for No Flip Flop disabled
1 parent 3f21fd5 commit 3ee5d93

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/kotlin/com/lambda/module/modules/movement/elytrafly/modes/GrimControlElytraFly.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ class GrimControlElytraFly(override val c: Config) : ElytraFlyMode(FlyMode.GrimC
7676
still = vec.lengthSquared() < 1e-4
7777
if (still) moving = false
7878

79-
if (still) {
79+
if (still && noFlipFlop) {
8080
stillTickTimer.tick()
8181
if (!player.hasFirework) shouldHaveFirework = false
82-
if (noFlipFlop) return@listen
82+
return@listen
8383
} else {
8484
val firework = findFirework()
8585
if (fireworkTimer.timePassed(lastDuration.seconds - safetyMargin.seconds)) {

0 commit comments

Comments
 (0)