diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index a865ffb63f5..95aeb8663d0 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -310,17 +310,6 @@ This function restores all organs. damage = damage*species.brute_mod if(organ.take_damage(damage, 0, sharp, edge, used_weapon)) UpdateDamageIcon() - var/list/attack_bubble_recipients = list() - var/mob/living/user - for(var/mob/O in viewers(user, src)) - if (O.client && !( O.blinded )) - attack_bubble_recipients.Add(O.client) - spawn(0) - var/image/dmgIcon = image('icons/mob/hit_blips.dmi', src, "dmg[rand(1,2)]",MOB_LAYER+1) - dmgIcon.pixel_x = (!lying) ? rand(-3,3) : rand(-11,12) - dmgIcon.pixel_y = (!lying) ? rand(-11,9) : rand(-10,1) - //world << "x: [dmgIcon.pixel_x] AND y: [dmgIcon.pixel_y]" - flick_overlay(dmgIcon, attack_bubble_recipients, 9) if(BURN) damageoverlaytemp = 20 if(species && species.burn_mod) diff --git a/icons/mob/hit_blips.dmi b/icons/mob/hit_blips.dmi deleted file mode 100644 index 53ec7b3fd07..00000000000 Binary files a/icons/mob/hit_blips.dmi and /dev/null differ