diff --git a/src/main/java/frc4388/robot/RobotContainer.java b/src/main/java/frc4388/robot/RobotContainer.java index 3df6123..1d50f0b 100644 --- a/src/main/java/frc4388/robot/RobotContainer.java +++ b/src/main/java/frc4388/robot/RobotContainer.java @@ -337,7 +337,7 @@ public class RobotContainer { // place high new POVButton(getDeadbandedOperatorController(), 0) .onTrue(new ConditionalCommand( - new InstantCommand(() -> queuePlacement.accept(placeCubeHigh)), + new InstantCommand(() -> queuePlacement.accept(placeConeHigh)), emptyCommand.asProxy(), () -> readyForPlacement == true) ); @@ -345,7 +345,7 @@ public class RobotContainer { // place mid new POVButton(getDeadbandedOperatorController(), 270) .onTrue(new ConditionalCommand( - new InstantCommand(() -> queuePlacement.accept(placeCubeMid)), + new InstantCommand(() -> queuePlacement.accept(placeConeMid)), emptyCommand.asProxy(), () -> readyForPlacement == true) );