From: iefomit Date: Mon, 6 Apr 2026 05:03:32 +0000 (-0700) Subject: change order X-Git-Url: https://git.taranathan.com/?a=commitdiff_plain;h=25b5a6c421c0dd52f522e918119b35b8969178c0;p=FRC2026.git change order --- diff --git a/src/main/java/frc/robot/util/BrownOut/BrownOutLevel.java b/src/main/java/frc/robot/util/BrownOut/BrownOutLevel.java index 11b1992..4a7ff2e 100644 --- a/src/main/java/frc/robot/util/BrownOut/BrownOutLevel.java +++ b/src/main/java/frc/robot/util/BrownOut/BrownOutLevel.java @@ -13,8 +13,8 @@ public class BrownOutLevel { public BrownOutLevel( double shooterCurrent, double hoodCurrent, - double turretCurrent, double spindexerCurrent, + double turretCurrent, double intakeCurrent, double steerCurrent, double driveCurrent @@ -22,8 +22,8 @@ public class BrownOutLevel { this.shooterCurrent = shooterCurrent; this.hoodCurrent = hoodCurrent; this.spindexerCurrent = spindexerCurrent; - this.intakeCurrent = intakeCurrent; this.turretCurrent = turretCurrent; + this.intakeCurrent = intakeCurrent; this.steerCurrent = steerCurrent; this.driveCurrent = driveCurrent; }