From 72bf019b424acf3bc237727162248133b777d1f4 Mon Sep 17 00:00:00 2001 From: Toastical Date: Mon, 24 Feb 2025 18:11:04 +0200 Subject: [PATCH] changed the proc (#28249) Co-authored-by: Toastical --- code/game/objects/items/weapons/rpd.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/rpd.dm b/code/game/objects/items/weapons/rpd.dm index d85bda11ba2..708a92adad3 100644 --- a/code/game/objects/items/weapons/rpd.dm +++ b/code/game/objects/items/weapons/rpd.dm @@ -348,7 +348,7 @@ to_chat(user, "ERROR: \The [T] is out of [src]'s range!") return - if(!(user in viewers(12, T))) // Checks if the user can see the target turf + if(!(user in hearers(12, T))) // Checks if user can hear the target turf, cause viewers doesnt work for it. to_chat(user, "[src] needs full visibility to determine the dispensing location.") playsound(src, 'sound/machines/synth_no.ogg', 50, TRUE) return