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")