From a64f1849c09115c007b66c6df1d870c7e25ce42f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mieszko=20J=C4=99drzejczak?= Date: Mon, 10 Oct 2016 12:51:56 +0200 Subject: [PATCH] Actually fixes the implants this time --- code/datums/uplink_item.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 713ddd59e90..1d57ffcfd2e 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -1201,10 +1201,10 @@ var/list/uplink_items = list() /datum/uplink_item/cyber_implants/spawn_item(turf/loc, obj/item/device/uplink/U) if(item) if(findtext(item, /obj/item/organ/internal/cyberimp)) - return new /obj/item/weapon/storage/box/cyber_implants(loc, item) U.uses -= max(cost, 0) U.used_TC += cost feedback_add_details("traitor_uplink_items_bought", name) //this one and the line before copypasted because snowflaek code + return new /obj/item/weapon/storage/box/cyber_implants(loc, item) else return ..()