From a20df0bdeac0e5a9b0601832f51159fd46e1ee39 Mon Sep 17 00:00:00 2001 From: Verkister Date: Wed, 18 Dec 2019 16:54:20 +0200 Subject: [PATCH] Fixes belly transfer sound duplication. But also disables it due to redundancy. The fixed bit will still be there should it become relevant again at some point. --- code/modules/vore/eating/belly_obj_vr.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 3183aaef8dc..413c3511cd4 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -638,14 +638,16 @@ I.decontaminate() I.gurgle_contaminate(target.contents, target.contamination_flavor, target.contamination_color) items_preserved -= content + /* Disabling this part due to redundancy. Entered() on target belly will make the sound anyway. if(!silent && target.vore_sound && !recent_sound) var/soundfile - if(!fancy_vore) + if(!target.fancy_vore) soundfile = classic_vore_sounds[target.vore_sound] else soundfile = fancy_vore_sounds[target.vore_sound] if(soundfile) playsound(src, soundfile, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/digestion_noises) + */ owner.updateVRPanel() for(var/mob/living/M in contents) M.updateVRPanel()