Remove 'if' loop that makes the robot repeat the path

This commit is contained in:
2024-11-11 20:35:14 -08:00
parent a493024821
commit 19308712c9

View File

@ -153,9 +153,6 @@ public class BlueBasketAuto extends OpMode {
@Override
public void loop() {
follower.update();
if (follower.atParametricEnd()) {
follower.followPath(path);
}
follower.telemetryDebug(telemetryA);
}
}