From 34176fa441d8aaf7d4b18a7d2b87b92306e3a231 Mon Sep 17 00:00:00 2001 From: redstryker Date: Fri, 23 Sep 2016 15:29:20 -0400 Subject: [PATCH] Fixed some errors and added it to technomancer sounds. --- code/game/gamemodes/technomancer/spells/audible_deception.dm | 1 + code/modules/organs/organ_external.dm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/technomancer/spells/audible_deception.dm b/code/game/gamemodes/technomancer/spells/audible_deception.dm index 970d983894..17a1d9db20 100644 --- a/code/game/gamemodes/technomancer/spells/audible_deception.dm +++ b/code/game/gamemodes/technomancer/spells/audible_deception.dm @@ -60,6 +60,7 @@ "Nymph Chirping" = 'sound/misc/nymphchirp.ogg', "Sad Trombone" = 'sound/misc/sadtrombone.ogg', "Honk" = 'sound/items/bikehorn.ogg', + "Bone Fracture" = "fracture", ) var/selected_sound = null diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index 5648f0527a..642c5dade9 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -1002,7 +1002,7 @@ Note that amputating the affected organ does in fact remove the infection from t if(!(species.flags & NO_PAIN)) owner.emote("scream") - playsound(src.loc, 'fracture', 10, 1, -2) + playsound(src.loc, "fracture", 10, 1, -2) status |= ORGAN_BROKEN broken_description = pick("broken","fracture","hairline fracture")