Skip to content

Commit 002e2bc

Browse files
committed
Do not clamp output in disable()
1 parent 27db9ed commit 002e2bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/src/main/java/com/team2813/lib2813/subsystems/MotorSubsystem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public void enable() {
101101

102102
public void disable() {
103103
isEnabled = false;
104-
useOutput(0, 0);
104+
motor.set(controlMode, 0);
105105
}
106106

107107
/**

0 commit comments

Comments
 (0)