From 73f450465f949c9beb7a0b748d43d5b112b60e1e Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 25 Aug 2017 16:04:01 +0300 Subject: [PATCH] Makes vore organ transfer use the target organ's sound. -Ye it's no longer hardlimited to squish2.ogg --- code/modules/vore/eating/belly_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/belly_vr.dm b/code/modules/vore/eating/belly_vr.dm index 96269c83188..edd138b0eb3 100644 --- a/code/modules/vore/eating/belly_vr.dm +++ b/code/modules/vore/eating/belly_vr.dm @@ -522,7 +522,7 @@ to_chat(owner, "[M] tastes of [M.get_taste_message(0)].") if(!silent) for(var/mob/hearer in range(1,owner)) - hearer << sound('sound/vore/squish2.ogg',volume=80) + hearer << sound(target.vore_sound,volume=80) owner.updateVRPanel() for(var/mob/living/M in internal_contents) M.updateVRPanel()