1 parent 3f21fd5 commit 3ee5d93Copy full SHA for 3ee5d93
1 file changed
src/main/kotlin/com/lambda/module/modules/movement/elytrafly/modes/GrimControlElytraFly.kt
@@ -76,10 +76,10 @@ class GrimControlElytraFly(override val c: Config) : ElytraFlyMode(FlyMode.GrimC
76
still = vec.lengthSquared() < 1e-4
77
if (still) moving = false
78
79
- if (still) {
+ if (still && noFlipFlop) {
80
stillTickTimer.tick()
81
if (!player.hasFirework) shouldHaveFirework = false
82
- if (noFlipFlop) return@listen
+ return@listen
83
} else {
84
val firework = findFirework()
85
if (fireworkTimer.timePassed(lastDuration.seconds - safetyMargin.seconds)) {
0 commit comments