From 9eae55772d2c92da9e7226bbd267d8f543fd4bd7 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 29 Jul 2022 14:47:39 +0200 Subject: [PATCH] [MIRROR] You can no longer delete the nuclear disk using a windoor [MDB IGNORE] (#15267) * You can no longer delete the nuclear disk using a windoor (#68770) removed a way that you could send items into the void using just a windoor and a pal * You can no longer delete the nuclear disk using a windoor Co-authored-by: Jacquerel --- code/datums/elements/strippable.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/datums/elements/strippable.dm b/code/datums/elements/strippable.dm index f47a66ac317..8bd13b24002 100644 --- a/code/datums/elements/strippable.dm +++ b/code/datums/elements/strippable.dm @@ -449,9 +449,11 @@ // They equipped an item in the meantime if (!isnull(strippable_item.get_item(owner))) + user.put_in_hands(held_item) return if (!user.Adjacent(owner)) + user.put_in_hands(held_item) return strippable_item.finish_equip(owner, held_item, user)