This commit is contained in:
2023-11-15 18:03:37 -05:00
parent 010d3d001d
commit 5d69880fcc
7 changed files with 13 additions and 13 deletions

View File

@@ -12,7 +12,7 @@ public class Force3 extends CommandBase {
private Lanceur lanceur;
GenericEntry force3;
/** Creates a new Force1. */
public Force3(Lancer lancer) {
public Force3(Lanceur lanceur,GenericEntry force3) {
this.lanceur = lanceur;
addRequirements(lanceur);
this.force3 = force3;
@@ -28,7 +28,7 @@ public class Force3 extends CommandBase {
// Called every time the scheduler runs while the command is scheduled.
@Override
public void execute() {
lanceur.lancer(500);
lanceur.lancer(force3.getDouble(0));
}
// Called once the command ends or is interrupted.