Loaded sim should not be rerun in design report

This commit is contained in:
Sibo Van Gool 2022-02-01 17:26:46 +01:00
parent 7a778bf58d
commit 1f5a2c3b5a

View File

@ -616,13 +616,13 @@ public class DesignReport {
log.warn("Simulation " + simulation.getId() + " has no motors, skipping");
// Continue so we don't simulate
continue;
case LOADED:
case UPTODATE:
log.trace("Simulation " + simulation.getId() + "is up to date, not running simulation");
simulate = false;
break;
case NOT_SIMULATED:
case OUTDATED:
case LOADED:
log.trace("Running simulation for " + simulation.getId());
simulate = true;
break;