From 2e0a6ba1000377153d131df47135a00febb21d47 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Tue, 5 May 2015 15:54:19 -0400 Subject: [PATCH] More limb sprite fixes --- code/modules/mob/living/carbon/human/update_icons.dm | 3 ++- code/modules/organs/organ_external.dm | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index f30951a5716..d281bf728d0 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -473,7 +473,8 @@ proc/get_damage_icon_part(damage_state, body_part) ..() if(monkeyizing) return update_mutations(0) - force_update_limbs() + update_body(0) + update_hair(0) update_mutantrace(0) update_inv_w_uniform(0,0) update_inv_wear_id(0) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index bc9fdf3fad3..ea1a8289472 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -664,6 +664,7 @@ Note that amputating the affected organ does in fact remove the infection from t return if(DROPLIMB_BURN) new /obj/effect/decal/cleanable/ash(get_turf(victim)) + qdel(src) if(DROPLIMB_BLUNT) var/obj/effect/decal/cleanable/blood/gibs/gore = new victim.species.single_gib_type(get_turf(victim)) if(victim.species.flesh_color) @@ -677,8 +678,8 @@ Note that amputating the affected organ does in fact remove the infection from t I.removed() if(istype(loc,/turf)) I.throw_at(get_edge_target_turf(src,pick(alldirs)),rand(1,3),30) + qdel(src) - del(src) /**************************************************** HELPERS