Fixed baselines for Intangible objects not being sent properly and made a minor improvement to encode method in SWGList and SWGMap

This commit is contained in:
Waverunner
2015-06-04 18:06:15 -04:00
parent abd632c793
commit 76cb745cb9
6 changed files with 22 additions and 20 deletions
+2 -2
View File
@@ -665,7 +665,7 @@ public abstract class SWGObject implements Serializable, Comparable<SWGObject> {
// First create the objects in the slots
for (SWGObject slotObject : slots.values()) {
if (slotObject != null) {
// System.out.println("Sending slotObj " + slotObject + " to " + target);
//Log.d("Sending slotObj " + slotObject + " to " + target);
slotObject.createObject(target);
}
}
@@ -674,7 +674,7 @@ public abstract class SWGObject implements Serializable, Comparable<SWGObject> {
for (SWGObject containedObject : containedObjects.values()) {
if (containedObject != null) {
//Log.d("SWGObject", "Sending containedObj " + containedObject + " to " + target);
Log.d("SWGObject", "Sending to location " + containedObject.getLocation());
//Log.d("SWGObject", "Sending to location " + containedObject.getLocation());
containedObject.createObject(target);
}
}