From c16257fd586ac19c0a80acfc3aa3fc3a17f26de4 Mon Sep 17 00:00:00 2001 From: Spades Date: Sat, 18 Jun 2016 19:19:29 -0400 Subject: [PATCH] Travis wake up. --- code/modules/vore/weight/fitness_machines_vr.dm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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!"