Quick Nymph Runtime Fix (#2686)

Adds a safety check to fix a runtime error with nymphs
This commit is contained in:
NanakoAC
2017-06-13 01:22:13 +03:00
committed by skull132
parent 613cdda4fd
commit c8e8710b41
@@ -190,7 +190,7 @@
//This is called periodically to register or remove this nymph's status as a bad organ of the gestalt
//This is used to notify the gestalt when it needs repaired
/mob/living/carbon/alien/diona/proc/check_status_as_organ()
if (istype(gestalt, /mob/living/carbon/human))
if (istype(gestalt, /mob/living/carbon/human) && !QDELETED(gestalt))
var/mob/living/carbon/human/H = gestalt
if (health < maxHealth)