Fixes changelings being unable to revive from death without a brain.

This commit is contained in:
QualityVan
2017-04-28 15:29:58 -04:00
parent b216423d3e
commit ceecc4b38d
+1 -1
View File
@@ -728,7 +728,7 @@
/mob/living/carbon/can_be_revived()
. = ..()
if(!getorgan(/obj/item/organ/brain))
if(!getorgan(/obj/item/organ/brain) && (!mind || !mind.changeling))
return 0
/mob/living/carbon/harvest(mob/living/user)