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