mirror of
https://bitbucket.org/projectswg/cucore.git
synced 2026-08-01 01:16:02 -04:00
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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user