diff --git a/src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt b/src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt index 1490c4f..cdb3458 100644 --- a/src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt +++ b/src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt @@ -38,7 +38,7 @@ class Intake( companion object { fun createIntake(): Intake { val motor = createSparkMax( - "ProtoUndertaker Motor", + "Inkake Motor", IntakeConstants.MOTOR_ID, NEOEncoder.creator( 1.0, @@ -49,7 +49,7 @@ class Intake( slaveSparks = mapOf(Pair(IntakeConstants.FOLLOLWER_ID, IntakeConstants.FOLLOWER_INV)) ) - return ProtoUndertaker(motor) + return Intake(motor) } } }