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
This commit is contained in:
oranges
2017-07-14 02:30:01 +00:00
parent 243908bd92
commit 9fe3d5088d
+2 -4
View File
@@ -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, "<span class='warning'>\The [tongs] is stuck to your hand!</span>")
else
load(sliver, user)
//try to load shard into core
load(tongs, user)
else
return ..()