From: Shaina Chen Date: Fri, 12 Feb 2016 03:27:29 +0000 (-0800) Subject: change isFinished to return true instead of false X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=47ef33b1383609395eb6bed519c3953cb8788bfe change isFinished to return true instead of false --- diff --git a/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseArmContinuous.java b/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseArmContinuous.java index def18f9f..8667f68d 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseArmContinuous.java +++ b/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseArmContinuous.java @@ -24,7 +24,7 @@ public class RaiseDefenseArmContinuous extends Command { @Override protected boolean isFinished() { - return false; + return true; } @Override