Commented out clear aware in delete object causing awareness issues on relogging

This commit is contained in:
Waverunner
2015-06-05 15:09:16 -04:00
parent 695c419603
commit 9d2adce3fc
+1 -1
View File
@@ -238,7 +238,7 @@ public class ObjectManager extends Manager {
SWGObject obj = objects.remove(objId);
if (obj == null)
return null;
obj.clearAware();
//obj.clearAware(); // This caused problems with logging in and back out not being able to see anyone at all
objectAwareness.remove(obj);
Log.i("ObjectManager", "Deleted object %d [%s]", obj.getObjectId(), obj.getTemplate());
return obj;