Added condition to awareness where you can always see your child items

This commit is contained in:
Josh Larson
2024-11-30 15:13:22 -06:00
parent 6c9af910d2
commit ebee7b5909
@@ -215,6 +215,8 @@ public class CreatureObject extends TangibleObject {
SWGObject targetParent = target.getSuperParent();
if (myParent != null && myParent == targetParent)
return true;
if (targetParent == this)
return true;
if (isDifferentInstance(target))
return false;