X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fnet%2Fsf%2Fopenrocket%2Fsimulation%2FFlightSimulator.java;fp=src%2Fnet%2Fsf%2Fopenrocket%2Fsimulation%2FFlightSimulator.java;h=a2e42a470410f0fd029393c25403e43fd71f17c3;hb=e298a9509613f232227d16d28310611b33c3aa03;hp=163b7ff2adc0ecc1b1348443ae646d0581049fae;hpb=c71eeba85a8a25e1bd43b27ad09cb2238139b737;p=debian%2Fopenrocket diff --git a/src/net/sf/openrocket/simulation/FlightSimulator.java b/src/net/sf/openrocket/simulation/FlightSimulator.java index 163b7ff2..a2e42a47 100644 --- a/src/net/sf/openrocket/simulation/FlightSimulator.java +++ b/src/net/sf/openrocket/simulation/FlightSimulator.java @@ -518,6 +518,7 @@ public abstract class FlightSimulator { // Count the number of motors in a cluster int count = 1; for (RocketComponent c = (RocketComponent)mount; c != null; c = c.getParent()) { + // TODO: HIGH: This does not take into account clusters of clusters! if (c instanceof Clusterable) count *= ((Clusterable)c).getClusterConfiguration().getClusterCount(); }