Skip to content

Commit

Permalink
Bug FIx
Browse files Browse the repository at this point in the history
  • Loading branch information
BrucePetersProgram committed Nov 29, 2023
1 parent 2b716d1 commit 1469066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Commands/IntakeCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ public void end(boolean interrupted) {}
// Returns true when the command should end.
@Override
public boolean isFinished() {
return intakeSubsystem.IsLoaded() || !isIntake;
return intakeSubsystem.IsLoaded();
}
}

0 comments on commit 1469066

Please sign in to comment.