Merge pull request #6033 from Poojawa/bluespace-bags-are-a-mistake

Fixes occupied bluespace bodybags from being put in the analyzer
This commit is contained in:
deathride58
2018-03-21 19:31:05 +00:00
committed by GitHub
@@ -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, "<span class='warning'>\The [O] has dangerous levels of activity, you cannot put it in the [src.name]!</span>")
return
if(!user.transferItemToLoc(O, src))
to_chat(user, "<span class='warning'>\The [O] is stuck to your hand, you cannot put it in the [src.name]!</span>")
return