From 548d27da35879f1f40bde3db3c0c3edb82cf2d5d Mon Sep 17 00:00:00 2001 From: Giacomand Date: Fri, 10 Jan 2014 17:41:16 +0000 Subject: [PATCH] Emagged Cyborgs, when destroyed via the Robotics Console, will not only have a large explosion but their MMI will die with them. This will promote locking down the cyborg, instead, to discover who emagged it via cyborg deconstruction. This commit was brought to you by the feedback thread, which made it happen. --- code/modules/mob/living/silicon/robot/robot.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 7a234920db6..163877ebf3e 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -959,6 +959,8 @@ /mob/living/silicon/robot/proc/self_destruct() if(emagged) + if(mmi) + del(mmi) explosion(src.loc,1,2,4,flame_range = 2) else explosion(src.loc,-1,0,2)