From 0f48e77990c2f1dc1442f73fd218e7772b69a199 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Fri, 11 Jan 2019 04:58:11 -0500 Subject: [PATCH] makes the sound actually play at the right place --- code/modules/recycling/disposal/pipe.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/recycling/disposal/pipe.dm b/code/modules/recycling/disposal/pipe.dm index 9f0fd930d7..aed2310a7f 100644 --- a/code/modules/recycling/disposal/pipe.dm +++ b/code/modules/recycling/disposal/pipe.dm @@ -79,7 +79,7 @@ H.forceMove(P) if(P.canclank == TRUE || (P.canclank == IFFY && P.dpdir != 3 && P.dpdir != 12)) - playsound(src, H.hasmob ? "clang" : "clangsmall", H.hasmob ? 50 : 25, 1) + playsound(P, H.hasmob ? "clang" : "clangsmall", H.hasmob ? 50 : 25, 1) return P else // if wasn't a pipe, then they're now in our turf H.forceMove(get_turf(src))