From 9fe3d5088da2188572449c089c0d67061cfefebd Mon Sep 17 00:00:00 2001 From: oranges Date: Fri, 14 Jul 2017 02:30:01 +0000 Subject: [PATCH] Fix the attackby of the supermatter containment core It was eating your tongs for no apparent reason and also not passing the tongs into the load proc instead passing in it's own sliver --- code/game/objects/items/theft_tools.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/theft_tools.dm b/code/game/objects/items/theft_tools.dm index 3bb88046a2b..ac9ede16b96 100644 --- a/code/game/objects/items/theft_tools.dm +++ b/code/game/objects/items/theft_tools.dm @@ -181,10 +181,8 @@ /obj/item/nuke_core_container/supermatter/attackby(obj/item/weapon/hemostat/supermatter/tongs, mob/user) if(istype(tongs)) - if(!user.temporarilyRemoveItemFromInventory(tongs)) - to_chat(user, "\The [tongs] is stuck to your hand!") - else - load(sliver, user) + //try to load shard into core + load(tongs, user) else return ..()