From 5120053853bcbd78e99c842b796a8f7b3a395253 Mon Sep 17 00:00:00 2001 From: Charlie Nolan Date: Sat, 25 Jan 2025 23:00:47 -0800 Subject: [PATCH] Remove redundant block that results in duplicate messages (#28120) Signed-off-by: Charlie Nolan --- code/__HELPERS/game.dm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index 0fd276eafaa..490b714bf57 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -180,11 +180,6 @@ return hear for(var/atom/A in hear(R, T)) - if(ismob(A)) - var/mob/M = A - if(M.client || include_clientless) - hear += M - if(isobj(A) || ismob(A)) collect_nested_mobs(A, hear, 3, !include_clientless)