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 ..()