Merge pull request #10054 from VOREStation/upstream-merge-7999

[MIRROR] Non-mobs aren't allies
This commit is contained in:
Novacat
2021-03-31 05:13:05 -04:00
committed by Chompstation Bot
parent b9581e43cf
commit 14c06e288a

View File

@@ -52,7 +52,7 @@
return say(message)
/mob/living/proc/IIsAlly(mob/living/L)
return src.faction == L.faction
return istype(L) && src.faction == L.faction
/mob/living/simple_mob/IIsAlly(mob/living/L)
. = ..()