diff --git a/core/src/net/sf/openrocket/database/motor/ThrustCurveMotorSetDatabase.java b/core/src/net/sf/openrocket/database/motor/ThrustCurveMotorSetDatabase.java index d04aea975..60b3256b4 100644 --- a/core/src/net/sf/openrocket/database/motor/ThrustCurveMotorSetDatabase.java +++ b/core/src/net/sf/openrocket/database/motor/ThrustCurveMotorSetDatabase.java @@ -44,7 +44,9 @@ public class ThrustCurveMotorSetDatabase implements MotorDatabase { matchDescription = false; else if (manufacturer != null && !m.getManufacturer().matches(manufacturer)) matchDescription = false; - else if (designation != null && !designation.equalsIgnoreCase(m.getDesignation())) + else if (designation != null && + !designation.equalsIgnoreCase(m.getDesignation()) && + !designation.equalsIgnoreCase(m.getCommonName())) matchDescription = false; else if (!Double.isNaN(diameter) && (Math.abs(diameter - m.getDiameter()) > 0.005)) matchDescription = false;