]> git.taranathan.com Git - FRC2026.git/commitdiff
bit more stuff
authoriefomit <timofei.stem@gmail.com>
Tue, 17 Feb 2026 00:21:32 +0000 (16:21 -0800)
committeriefomit <timofei.stem@gmail.com>
Tue, 17 Feb 2026 00:21:32 +0000 (16:21 -0800)
src/main/java/frc/robot/RobotContainer.java

index be86b88a3c7c5ec039da41edc6003b602475e917..b3a7fb262ad270017ec6308d912a9b24f609a59f 100644 (file)
@@ -88,7 +88,6 @@ public class RobotContainer {
 
       case Vivace:
         linearClimb = new LinearClimb();
-        break;
 
       case Phil: // AKA "IHOP"
 
@@ -112,10 +111,10 @@ public class RobotContainer {
         PathGroupLoader.loadPathGroups();
         // Load the auto command
         try {
-        PathPlannerAuto.getPathGroupFromAutoFile("Command Name");
-        auto = new PathPlannerAuto("Path Name");
+          PathPlannerAuto.getPathGroupFromAutoFile("Command Name");
+          auto = new PathPlannerAuto("Path Name");
         } catch (IOException | ParseException e) {
-        e.printStackTrace();
+          e.printStackTrace();
         }
         drive.setDefaultCommand(new DefaultDriveCommand(drive, driver));
         break;