diff --git a/core/src/net/sf/openrocket/rocketcomponent/FlightConfiguration.java b/core/src/net/sf/openrocket/rocketcomponent/FlightConfiguration.java index 9d9bd6a72..2ae0211fa 100644 --- a/core/src/net/sf/openrocket/rocketcomponent/FlightConfiguration.java +++ b/core/src/net/sf/openrocket/rocketcomponent/FlightConfiguration.java @@ -549,21 +549,14 @@ public class FlightConfiguration implements FlightConfigurableParameter iterator = this.iterator(); + while (iterator.hasNext()) { + RocketComponent child = iterator.next(); + if (child instanceof RecoveryDevice) { + return true; + } + } + return false; + } ////////////// Methods that may not be overridden ////////////