diff --git a/core/src/net/sf/openrocket/simulation/SimulationStatus.java b/core/src/net/sf/openrocket/simulation/SimulationStatus.java index f702a980f..3b1b4c32f 100644 --- a/core/src/net/sf/openrocket/simulation/SimulationStatus.java +++ b/core/src/net/sf/openrocket/simulation/SimulationStatus.java @@ -229,7 +229,7 @@ public class SimulationStatus implements Monitorable { public Collection getActiveMotors() { List activeList = new ArrayList(); for( MotorClusterState state: this.motorStateList ){ - if (this.configuration.isComponentActive( state.getMount() { + if (this.configuration.isComponentActive( state.getMount())) { activeList.add( state ); } }