Merge pull request #1410 from SiboVG/issue-1409

[fixes #1409] Remove instancecount multiplication in getSectionMass
This commit is contained in:
Joe Pfeiffer 2022-06-06 18:21:43 -06:00 committed by GitHub
commit 54b5677dea
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(); massSubtotal += rc.getSectionMass();
} }
return massSubtotal * getInstanceCount(); return massSubtotal;
} }
/** /**