Merge pull request #1318 from JoePfeiffer/fix-1291

consider instance count in component mass
This commit is contained in:
Joe Pfeiffer 2022-05-03 13:51:41 -06:00 committed by GitHub
commit 1e0734ae1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1377,7 +1377,7 @@ public abstract class RocketComponent implements ChangeSource, Cloneable, Iterab
massSubtotal += rc.getSectionMass();
}
return massSubtotal;
return massSubtotal * getInstanceCount();
}
/**