Thinking about adding the line
Code:
public void autonomousIntit () {
autonomousCommand = (Command) autonomousChooser.getSelected ();
// *******Add this******
if (autonomousCommand == null) {
autonomousCommand = new Auto_00_ReachEdgeOfObstical();
// now the normal
if (autonomousCommand != null) autonomousCommand.start ();
}