From b500fbdc5d0cfed6db2be20ab5fa6c32e357cd5c Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Mon, 9 Mar 2020 15:35:39 -0400 Subject: [PATCH] Fix a protean runtime --- .../carbon/human/species/station/protean_vr/protean_species.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm index f7ed970e7ca..4d5ce6d1023 100755 --- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm @@ -144,6 +144,8 @@ H.equip_to_slot_or_del(metal_stack, slot_in_backpack) spawn(0) //Let their real nif load if they have one + if(!H) //Human could have been deleted in this amount of time. Observing does this, mannequins, etc. + return if(!H.nif) var/obj/item/device/nif/bioadap/new_nif = new() new_nif.quick_implant(H)