Travis wake up.

This commit is contained in:
Spades
2016-06-18 19:19:29 -04:00
parent 05ce93721b
commit c16257fd58
@@ -69,7 +69,7 @@
"<span class='notice'>You slam your fist into the punching bag.</span>",
"<span class='notice'>You jab the punching bag with your elbow.</span>")
user << message
playsound(src.loc, "punch", 50, 1)
playsound(src.loc, 'punch', 50, 1)
else if(user.nutrition < 35)
user << "<span class='notice'>You need more energy to workout on the mat!</span>"
@@ -105,12 +105,10 @@
"<span class='notice'>You jab the punching bag with your elbow.</span>",
"<span class='notice'>You hammer the clown right in it's face with your fist.</span>",
"<span class='notice'>A honk emits from the punching bag as you hit it.</span>")
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 << "<span class='notice'>You need more energy to workout on the mat!</span>"