From 4c637739a7b3e9e88daa3f51a71f34ddf4ad4512 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 24 Feb 2018 08:34:23 -0600 Subject: [PATCH] Applies ignore_walls = FALSE to dogborgs (#5691) --- code/citadel/dogborgstuff.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/citadel/dogborgstuff.dm b/code/citadel/dogborgstuff.dm index bfa40c6cda..67d8d7f669 100644 --- a/code/citadel/dogborgstuff.dm +++ b/code/citadel/dogborgstuff.dm @@ -612,7 +612,7 @@ to_chat(T,"You feel [hound]'s belly slowly churn around your form, breaking you down into a soft slurry to be used as power for [hound]'s systems.") src.hound.cell.give(30000) //Fueeeeellll T.stop_sound_channel(CHANNEL_PRED) - playsound(get_turf(hound),"death_pred",50,0,-6,0,channel=CHANNEL_PRED) + playsound(get_turf(hound),"death_pred",50,0,-6,0,channel=CHANNEL_PRED,ignore_walls = FALSE) T.stop_sound_channel(CHANNEL_PRED) T.playsound_local("death_prey",60) for(var/obj/item/W in T) @@ -647,7 +647,7 @@ for(var/mob/living/M in contents) if(prob(50)) M.stop_sound_channel(CHANNEL_PRED) - playsound(get_turf(hound),"digest_pred",75,0,-6,0,channel=CHANNEL_PRED) + playsound(get_turf(hound),"digest_pred",35,0,-6,0,channel=CHANNEL_PRED,ignore_walls = FALSE) M.stop_sound_channel(CHANNEL_PRED) M.playsound_local("digest_prey",60)