diff --git a/src/resources/objects/tangible/TangibleObject.java b/src/resources/objects/tangible/TangibleObject.java index 151af1a9..209f4903 100644 --- a/src/resources/objects/tangible/TangibleObject.java +++ b/src/resources/objects/tangible/TangibleObject.java @@ -173,10 +173,11 @@ public class TangibleObject extends SWGObject implements Serializable { } public SWGList getComponentCustomizations() { - return (SWGList) getBaseline(3).get("componentCustomizations"); + return (SWGSet) getBaseline(3).get("componentCustomizations"); } public void setComponentCustomizations(List componentCustomizations) { + getComponentCustomizations().clear(); getComponentCustomizations().addAll(componentCustomizations); }