From 601189ab5d769dbcca43e47907ec93247f58b569 Mon Sep 17 00:00:00 2001 From: EdwardFaucher Date: Tue, 29 Nov 2022 19:32:55 -0500 Subject: [PATCH] vmnc --- src/main/java/frc/robot/commands/ResetGyro.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/frc/robot/commands/ResetGyro.java b/src/main/java/frc/robot/commands/ResetGyro.java index d9a4050..3b6cee3 100644 --- a/src/main/java/frc/robot/commands/ResetGyro.java +++ b/src/main/java/frc/robot/commands/ResetGyro.java @@ -38,6 +38,6 @@ public class ResetGyro extends CommandBase { // Returns true when the command should end. @Override public boolean isFinished() { - return false; + return true; } }