diff --git a/core/src/net/sf/openrocket/rocketcomponent/Rocket.java b/core/src/net/sf/openrocket/rocketcomponent/Rocket.java index 1824934bc..1f547cdb1 100644 --- a/core/src/net/sf/openrocket/rocketcomponent/Rocket.java +++ b/core/src/net/sf/openrocket/rocketcomponent/Rocket.java @@ -433,7 +433,7 @@ public class Rocket extends ComponentAssembly { this.functionalModID = source.functionalModID; this.refType = source.refType; this.customReferenceLength = source.customReferenceLength; - this.stageMap = source.stageMap; + this.stageMap = new ConcurrentHashMap<>(source.stageMap); // these flight configurations need to reference the _this_ Rocket: this.configSet.reset();