From 738eaa1d547411486b8461201cff0422d62cb619 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 15 Jul 2017 13:42:39 -0500 Subject: [PATCH] Fix the attackby of the supermatter containment core (#2024) --- 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 26a4094ced..55488fa264 100644 --- a/code/game/objects/items/theft_tools.dm +++ b/code/game/objects/items/theft_tools.dm @@ -182,10 +182,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 ..()