X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fauton%2FCompactRobot.java;h=7e3ba9dcc54fa88326beb4834c368d95652a37e4;hp=1dac8a77d9b81c560d1107d70862f94732e0029e;hb=e4fbab026f4a68a4a238839ae2295c56c1134434;hpb=faabd6f8711d4f582a4fcec6f46bdee1ddd3d1cf diff --git a/src/org/usfirst/frc/team3501/robot/commands/auton/CompactRobot.java b/src/org/usfirst/frc/team3501/robot/commands/auton/CompactRobot.java index 1dac8a77..7e3ba9dc 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/auton/CompactRobot.java +++ b/src/org/usfirst/frc/team3501/robot/commands/auton/CompactRobot.java @@ -1,6 +1,5 @@ package org.usfirst.frc.team3501.robot.commands.auton; -import org.usfirst.frc.team3501.robot.Robot; import org.usfirst.frc.team3501.robot.commands.intakearm.MoveIntakeArmToAngle; import org.usfirst.frc.team3501.robot.subsystems.IntakeArm; @@ -14,6 +13,5 @@ public class CompactRobot extends CommandGroup { public CompactRobot() { addSequential(new MoveIntakeArmToAngle(IntakeArm.potAngles[3], IntakeArm.moveIntakeArmSpeed)); - Robot.shooter.lowerHood(); } }