Remove Parallel Command Group

Command Groups gay
This commit is contained in:
Keenan D. Buckley
2020-02-22 10:49:34 -07:00
parent 0d50221dc6
commit 08d543ba74
@@ -242,10 +242,8 @@ public class RobotContainer {
else if (Constants.SELECTED_AUTO == 1) {
return new SequentialCommandGroup( new Wait(5, m_robotDrive),
new TurnDegrees(45, m_robotDrive),
new ParallelCommandGroup(
new InstantCommand(() -> m_robotDrive.setShiftState(false), m_robotDrive),
new TurnDegrees(315, m_robotDrive)
)
new InstantCommand(() -> m_robotDrive.setShiftState(false), m_robotDrive),
new TurnDegrees(315, m_robotDrive)
);
}