From 29bad6b9359bb59756ae3dc6032b452044f27d6b Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sun, 29 May 2016 15:45:06 -0400 Subject: [PATCH] Fix belly sounds. --- code/modules/vore/eating/belly_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/belly_vr.dm b/code/modules/vore/eating/belly_vr.dm index 0981ed7258..ddc83ac908 100644 --- a/code/modules/vore/eating/belly_vr.dm +++ b/code/modules/vore/eating/belly_vr.dm @@ -372,6 +372,6 @@ M.show_message(struggle_outer_message, 2) // hearable R << struggle_user_message - var/strsound = pick(struggle_sounds) + var/strpick = pick(struggle_sounds) + var/strsound = struggle_sounds[strpick] playsound(R.loc, strsound, 50, 1) - R << strsound //Might be too loud. We'll see.