We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eedbd42 commit 94c0abcCopy full SHA for 94c0abc
1 file changed
src/main/java/frc/robot/Controls.java
@@ -37,9 +37,9 @@
37
import frc.robot.util.BranchHeight;
38
import frc.robot.util.RobotType;
39
import frc.robot.util.ScoringMode;
40
+import frc.robot.util.ScoringType;
41
import frc.robot.util.SoloScoringMode;
42
import java.util.function.BooleanSupplier;
-import frc.robot.util.ScoringType;
43
44
public class Controls {
45
private static final int SOLO_CONTROLLER_PORT = 0;
@@ -1011,7 +1011,8 @@ private void configureSoloControllerBindings() {
1011
() -> {
1012
Command scoreCommand =
1013
switch (soloScoringMode) {
1014
- case CORAL_IN_CLAW -> getCoralBranchHeightCommand(ScoringType.SOLOC_RIGHT)
+ case CORAL_IN_CLAW -> getCoralBranchHeightCommand(
1015
+ ScoringType.SOLOC_RIGHT)
1016
.until(
1017
() ->
1018
soloController.a().getAsBoolean()
0 commit comments