mirror of
https://bitbucket.org/projectswg/cucore.git
synced 2026-09-13 00:45:06 -04:00
Fixed container objects baselines not being sent, caused due to a prior commit
This commit is contained in:
@@ -683,7 +683,7 @@ public abstract class SWGObject implements Serializable, Comparable<SWGObject> {
|
||||
|
||||
// Now create the contained objects
|
||||
for (SWGObject containedObject : containedObjects.values()) {
|
||||
if (containedObject != null && sentObjects.contains(containedObject)) {
|
||||
if (containedObject != null && !sentObjects.contains(containedObject)) {
|
||||
//Log.i("ChildrenObjects", "Sending containedObj " + containedObject + " to " + target);
|
||||
//Log.d("SWGObject", "Sending to location " + containedObject.getLocation());
|
||||
containedObject.createObject(target);
|
||||
|
||||
Reference in New Issue
Block a user