From b1ec1563fc85c836dd6338da3c073fe81210e1be Mon Sep 17 00:00:00 2001 From: Krausus Date: Wed, 6 May 2015 22:56:52 -0400 Subject: [PATCH] Fixes exploded limbs not launching their contents --- code/modules/organs/organ_external.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index ea1a8289472..c02920141e5 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -674,8 +674,8 @@ Note that amputating the affected organ does in fact remove the infection from t gore.update_icon() gore.throw_at(get_edge_target_turf(src,pick(alldirs)),rand(1,3),30) - for(var/obj/item/organ/I in internal_organs) - I.removed() + for(var/obj/item/organ/I in contents) + I.loc = loc if(istype(loc,/turf)) I.throw_at(get_edge_target_turf(src,pick(alldirs)),rand(1,3),30) qdel(src)