diff --git a/src/main/java/com/projectswg/holocore/resources/support/objects/swg/creature/CreatureObject.java b/src/main/java/com/projectswg/holocore/resources/support/objects/swg/creature/CreatureObject.java index 9b3032f04..1affe795a 100644 --- a/src/main/java/com/projectswg/holocore/resources/support/objects/swg/creature/CreatureObject.java +++ b/src/main/java/com/projectswg/holocore/resources/support/objects/swg/creature/CreatureObject.java @@ -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;