Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main/cpp/commands/CmdSpinShooterWheels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,9 @@ void CmdSpinShooterWheels::Execute() {
}
else {
if(m_subShooter->GetHub() == false){
topShooterSpeed = 8000;
btmShooterSpeed = 8000;
/******************Changed from 8000 to 12500***********/
topShooterSpeed = 12500;
btmShooterSpeed = 12500;
m_subShooter->SetShooterAngle(0.8);
std::cout << "Low Hub Selected " << std::endl;
}
Expand Down