diff --git a/core/src/net/sf/openrocket/motor/MotorConfiguration.java b/core/src/net/sf/openrocket/motor/MotorConfiguration.java index 4920a9421..25b6f8593 100644 --- a/core/src/net/sf/openrocket/motor/MotorConfiguration.java +++ b/core/src/net/sf/openrocket/motor/MotorConfiguration.java @@ -62,11 +62,11 @@ public class MotorConfiguration implements FlightConfigurableParameter throw new NullPointerException("Motor has a null mount... this should never happen: "+curMotorInstance.getID()); } - String str = motor.getDesignation(curMotorInstance.getEjectionDelay()); + String str = motor.getCommonName(curMotorInstance.getEjectionDelay()); int count = mount.getInstanceCount(); if (count > 1) { str = "" + count + Chars.TIMES + " " + str;