From e8b48a85487db4079f0de64f82b4a33ea30bb5ad Mon Sep 17 00:00:00 2001 From: "sieve32@gmail.com" Date: Thu, 26 Jul 2012 15:10:32 +0000 Subject: [PATCH] -Fixes a bad check for radios, and I hate myself for missing it. Thanks Mwahahaha for the bug report. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4184 316c924e-a436-60f5-8080-3fe189b3f50e --- code/defines/procs/gamehelpers.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/defines/procs/gamehelpers.dm b/code/defines/procs/gamehelpers.dm index 6180cffc2f..b4429f9d60 100644 --- a/code/defines/procs/gamehelpers.dm +++ b/code/defines/procs/gamehelpers.dm @@ -226,9 +226,7 @@ var/list/hearers = list() // Try to find all the players who can hear the message - for(var/key in client_list) - var/client/C = client_list[key] - var/mob/M = C.mob + for(var/mob/M in player_list) if(!M) continue var/atom/ear = M.get_ear()