You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, command composition, through commands like SequentialCommandGroup, do not follow the same rules as WPILib's command composition. We should refactor the command composition to follow those rules. Namely, we must ensure that:
Command compositions require all subsystems their components require
May run when disabled if all their component set runsWhenDisabled as true (currently not applicable)
Currently, command composition, through commands like SequentialCommandGroup, do not follow the same rules as WPILib's command composition. We should refactor the command composition to follow those rules. Namely, we must ensure that: