Skip to content

Commit

Permalink
fix: change default intake and feed speed to 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
rutmanz committed Sep 25, 2024
1 parent d8ac6a7 commit 4dd8a04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class IntakeAndFeed extends Command {
private final DoubleSupplier feederPercent;

public static Command withDefaults(Indexer indexer) {
return new IntakeAndFeed(indexer, () -> 0.8, () -> 1);
return new IntakeAndFeed(indexer, () -> 0.9, () -> 1);
}

public IntakeAndFeed(Indexer indexer, DoubleSupplier intakePercent, DoubleSupplier feederPercent) {
Expand Down

0 comments on commit 4dd8a04

Please sign in to comment.