From abeac9d2aecc935b586e106d1d429e22c27e62fe Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 26 Jun 2017 15:55:15 -0500 Subject: [PATCH] Fixes PAIs deleting their card on death --- code/modules/mob/living/silicon/pai/death.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/silicon/pai/death.dm b/code/modules/mob/living/silicon/pai/death.dm index 42259500da..504c93b3c3 100644 --- a/code/modules/mob/living/silicon/pai/death.dm +++ b/code/modules/mob/living/silicon/pai/death.dm @@ -4,12 +4,11 @@ stat = DEAD canmove = 0 card.removePersonality() - if(holoform) - card.forceMove(loc) + card.forceMove(loc) update_sight() clear_fullscreens() //New pAI's get a brand new mind to prevent meta stuff from their previous life. This new mind causes problems down the line if it's not deleted here. GLOB.living_mob_list -= src ghostize() - qdel(src) \ No newline at end of file + qdel(src)