From d77002fd6dfba759bb65f946199fa11cab62707c Mon Sep 17 00:00:00 2001 From: Verkister Date: Sat, 20 Mar 2021 18:27:36 +0200 Subject: [PATCH] Fixes despawn cryopods gib-killing the occupant Fixes despawn cryopods tearing the occupant into little pieces and making them croak audibly before despawning them. --- code/game/machinery/cryopod.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index baead3b720..d3436e1c80 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -380,6 +380,8 @@ //Drop all items into the pod. for(var/obj/item/W in to_despawn) + if(istype(W,/obj/item/organ)) + continue to_despawn.drop_from_inventory(W) W.forceMove(src)