From 99ba2e4bd29c3122a0dc51ac54e12c041c4861ad Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Wed, 20 Apr 2016 17:01:08 -0400 Subject: [PATCH] Fixes pda signaller --- code/modules/pda/radio.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/pda/radio.dm b/code/modules/pda/radio.dm index c64ea02ce7c..ae43ce10b3d 100644 --- a/code/modules/pda/radio.dm +++ b/code/modules/pda/radio.dm @@ -51,7 +51,7 @@ frequency.post_signal(src, signal, filter = s_filter) /obj/item/radio/integrated/receive_signal(datum/signal/signal) - if (signal.data["type"] == bot_type) + if (bot_type && istype(signal.source, /obj/machinery/bot_core) && signal.data["type"] == bot_type) if(!botlist) botlist = new()