From b80e7cded927177617696aab20b5d14c3400da73 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Tue, 20 Mar 2018 19:18:33 -0500 Subject: [PATCH] fixes #5996 --- code/modules/research/destructive_analyzer.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/research/destructive_analyzer.dm b/code/modules/research/destructive_analyzer.dm index 05acb20f0e..e7877c44cc 100644 --- a/code/modules/research/destructive_analyzer.dm +++ b/code/modules/research/destructive_analyzer.dm @@ -36,6 +36,10 @@ Note: Must be placed within 3 tiles of the R&D Console . = 1 if(!is_insertion_ready(user)) return + if(istype (O, /obj/item/bodybag/bluespace)) // CITADEL ADD. STOP PUTTING FUCKING BORGS INTO THE ANALYZER + if(O.contents.len != 0) + to_chat(user, "\The [O] has dangerous levels of activity, you cannot put it in the [src.name]!") + return if(!user.transferItemToLoc(O, src)) to_chat(user, "\The [O] is stuck to your hand, you cannot put it in the [src.name]!") return