From 3bb189e4788b736d23224a75e6366d931540c953 Mon Sep 17 00:00:00 2001 From: audrey Date: Tue, 12 Sep 2023 17:32:27 -0700 Subject: [PATCH] Fixing intake command name --- src/main/java/frc/robot/commands/IntakeModeCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/frc/robot/commands/IntakeModeCommand.java b/src/main/java/frc/robot/commands/IntakeModeCommand.java index f6eeb4f..9ac93a4 100644 --- a/src/main/java/frc/robot/commands/IntakeModeCommand.java +++ b/src/main/java/frc/robot/commands/IntakeModeCommand.java @@ -8,12 +8,12 @@ import frc.robot.subsystems.IntakeSubsystem; import frc.robot.subsystems.IntakeSubsystem.IntakeMode; -public class IntakeCommand extends CommandBase { +public class IntakeModeCommand extends CommandBase { private IntakeSubsystem intakeSubsystem; private IntakeMode mode; /** Creates a new IntakeCommand. */ - public IntakeCommand(IntakeSubsystem intakeSubsystem, IntakeMode mode) { + public IntakeModeCommand(IntakeSubsystem intakeSubsystem, IntakeMode mode) { // Use addRequirements() here to declare subsystem dependencies. this.intakeSubsystem = intakeSubsystem; this.mode = mode;