mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-02 03:15:52 -04:00
Fixed cast error
This commit is contained in:
@@ -173,10 +173,11 @@ public class TangibleObject extends SWGObject implements Serializable {
|
||||
}
|
||||
|
||||
public SWGList<Integer> getComponentCustomizations() {
|
||||
return (SWGList<Integer>) getBaseline(3).get("componentCustomizations");
|
||||
return (SWGSet<Integer>) getBaseline(3).get("componentCustomizations");
|
||||
}
|
||||
|
||||
public void setComponentCustomizations(List<Integer> componentCustomizations) {
|
||||
getComponentCustomizations().clear();
|
||||
getComponentCustomizations().addAll(componentCustomizations);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user