Fixes exploded limbs not launching their contents

This commit is contained in:
Krausus
2015-05-06 22:56:52 -04:00
parent b5f237bc7a
commit b1ec1563fc
+2 -2
View File
@@ -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)