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