Fix small logic error in ParallelDeadlineGroup (#2095)

This commit is contained in:
Oblarg
2019-11-18 18:33:45 -05:00
committed by Peter Johnson
parent 6f6c6da9f5
commit 0e83c65d27
3 changed files with 14 additions and 7 deletions

View File

@@ -101,7 +101,7 @@ class ParallelDeadlineGroup
std::vector<std::pair<std::unique_ptr<Command>, bool>> m_commands;
Command* m_deadline;
bool m_runWhenDisabled{true};
bool isRunning = false;
bool m_finished{true};
};
} // namespace frc2