Refactored Starter Clothing, Added CustomizationDelta, basework for Image Design

(Bug) Fixed hair and items on char create not being added to equip list
(Code) Minor change to BuffBuilderMessage
(Code) Added base work for Image Design
(Code) Refactored how starter clothing is assigned
(Code) Added delta for customization data on tangible objects
(Code) Created ProfessionTemplateVisitor for profession template iff's
This commit is contained in:
Waverunner
2014-03-25 22:06:38 -04:00
parent d1a7f20177
commit b9ed655f53
66 changed files with 743 additions and 887 deletions
@@ -123,7 +123,11 @@ public class TangibleObject extends SWGObject {
}
public void setCustomization(byte[] customization) {
this.customization = customization;
synchronized(objectMutex) {
this.customization = customization;
}
notifyObservers(messageBuilder.buildCustomizationDelta(customization), false);
}
public List<Integer> getComponentCustomizations() {