Fix for subtypes of X mob not being able to understand each other.

This commit is contained in:
Zuhayr
2013-08-16 19:00:08 -07:00
parent e2080ad3c3
commit 2bc8212d2a
+1 -1
View File
@@ -83,7 +83,7 @@
return 1
else if(isAI(src) && ispAI(other))
return 1
else if (istype(other, src.type))
else if (istype(other, src.type) || istype(src, other.type))
return 1
return 0