From 6ed3b91df251f0b5e25d5ae2255cf8eea42ca4c4 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 21 Mar 2021 14:50:44 +0200 Subject: [PATCH] Earlyports gibber cryopod fix haha completely harmless machine go brrrrr Fixes despawner cryopods literally 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 2a36b5db6cf..5b4305844ef 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -394,6 +394,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)