From a5be598c0a8787deeb4ec05ade74cf66d0cb65ce Mon Sep 17 00:00:00 2001 From: YPOQ <30683121+YPOQ@users.noreply.github.com> Date: Thu, 13 Sep 2018 21:05:02 -0600 Subject: [PATCH] Fixes stealth implants (#40260) --- code/datums/action.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/action.dm b/code/datums/action.dm index 1dc9c545eb9..b7089279cb0 100644 --- a/code/datums/action.dm +++ b/code/datums/action.dm @@ -502,7 +502,7 @@ /datum/action/item_action/agent_box/Trigger() if(!..()) return FALSE - if(!QDELETED(box)) + if(QDELETED(box)) if(cooldown < world.time - 100) box = new(owner.drop_location()) owner.forceMove(box)