diff --git a/code/modules/vore/weight/fitness_machines_vr.dm b/code/modules/vore/weight/fitness_machines_vr.dm
index b075e5d76cb..730d2a82965 100644
--- a/code/modules/vore/weight/fitness_machines_vr.dm
+++ b/code/modules/vore/weight/fitness_machines_vr.dm
@@ -69,7 +69,7 @@
"You slam your fist into the punching bag.",
"You jab the punching bag with your elbow.")
user << message
- playsound(src.loc, "punch", 50, 1)
+ playsound(src.loc, 'punch', 50, 1)
else if(user.nutrition < 35)
user << "You need more energy to workout on the mat!"
@@ -105,12 +105,10 @@
"You jab the punching bag with your elbow.",
"You hammer the clown right in it's face with your fist.",
"A honk emits from the punching bag as you hit it.")
- var/sound = pick(
- "punch",
- "clownstep",
- 'sound/items/bikehorn.ogg')
user << message
- playsound(src.loc, sound, 50, 1)
+ playsound(src.loc, 'sound/items/bikehorn.ogg', 50, 1)
+ playsound(src.loc, 'clownstep', 50, 1)
+ playsound(src.loc, 'punch', 50, 1)
else if(user.nutrition < 35)
user << "You need more energy to workout on the mat!"