From 92bc8350ad00f462e01b2f258e8685b8eee1a850 Mon Sep 17 00:00:00 2001 From: Markolie Date: Mon, 10 Oct 2016 23:54:16 +0200 Subject: [PATCH] Handle Drone radio --- code/modules/mob/living/silicon/robot/drone/drone.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/silicon/robot/drone/drone.dm b/code/modules/mob/living/silicon/robot/drone/drone.dm index 76dadd6533a..0e354b4c4a6 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone.dm @@ -43,6 +43,10 @@ remove_language("Galactic Common") add_language("Drone Talk", 1) add_language("Drone", 1) + + // Disable the microphone wire on Drones + if(radio) + radio.wires.CutWireIndex(WIRE_TRANSMIT) if(camera && "Robots" in camera.network) camera.network.Add("Engineering")