diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm
index 724cee9a6fb..3cfac06de15 100644
--- a/code/modules/reagents/reagent_containers/hypospray.dm
+++ b/code/modules/reagents/reagent_containers/hypospray.dm
@@ -17,6 +17,7 @@
preserve_item = 1
var/filled = 0
var/list/filled_reagents = list()
+ var/hyposound // What sound do we play on use?
/obj/item/weapon/reagent_containers/hypospray/New()
..()
@@ -55,8 +56,9 @@
user.setClickCooldown(DEFAULT_QUICK_COOLDOWN)
to_chat(user, "You inject [M] with \the [src].")
to_chat(M, "You feel a tiny prick!")
-
- playsound(src, 'sound/effects/hypospray.ogg',25)
+
+ if(hyposound)
+ playsound(src, hyposound,25)
if(M.reagents)
var/contained = reagentlist()
@@ -126,6 +128,7 @@
filled = 1
filled_reagents = list("inaprovaline" = 5)
preserve_item = 0
+ hyposound = 'sound/effects/hypospray.ogg'
/obj/item/weapon/reagent_containers/hypospray/autoinjector/on_reagent_change()
..()