diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 451fd823185..17bba8da868 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -160,7 +160,8 @@ if(!prob(martial_art.deflection_chance)) return ..() if(!src.lying && dna && !dna.check_mutation(HULK)) //But only if they're not lying down, and hulks can't do it - src.visible_message("[src] deflects the projectile; they can't be hit with ranged weapons!", "You deflect the projectile!") + src.visible_message("[src] deflects the projectile; they can't be hit with ranged weapons!", "You deflect the projectile!") + playsound(src, pick("sound/weapons/bulletflyby.ogg","sound/weapons/bulletflyby2.ogg","sound/weapons/bulletflyby3.ogg"), 75, 1) return 0 ..() diff --git a/sound/weapons/attributions.txt b/sound/weapons/attributions.txt new file mode 100644 index 00000000000..07097f3f6f9 --- /dev/null +++ b/sound/weapons/attributions.txt @@ -0,0 +1,7 @@ +bulletflyby sounds are by kMoon on freesound.org: +bulletflyby:https://www.freesound.org/people/kMoon/sounds/90782/ +bulletflyby2:https://www.freesound.org/people/kMoon/sounds/90784/ +bulletflyby3:https://www.freesound.org/people/kMoon/sounds/90783/ +No changes were made to the sounds, and all credit goes to kMoon. + + \ No newline at end of file diff --git a/sound/weapons/bulletflyby.ogg b/sound/weapons/bulletflyby.ogg new file mode 100644 index 00000000000..ce9405a5776 Binary files /dev/null and b/sound/weapons/bulletflyby.ogg differ diff --git a/sound/weapons/bulletflyby2.ogg b/sound/weapons/bulletflyby2.ogg new file mode 100644 index 00000000000..63956534ba3 Binary files /dev/null and b/sound/weapons/bulletflyby2.ogg differ diff --git a/sound/weapons/bulletflyby3.ogg b/sound/weapons/bulletflyby3.ogg new file mode 100644 index 00000000000..e8afd28b06d Binary files /dev/null and b/sound/weapons/bulletflyby3.ogg differ