From 8d273fa1332980902cff2abc8797c97edb111c54 Mon Sep 17 00:00:00 2001 From: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Date: Mon, 11 Mar 2024 10:07:54 +1100 Subject: [PATCH] [NO GBP] Fixes every single uplink getting free cybernetic implants (#81938) ## About The Pull Request Fixes every single uplink giving out free cybernetic implants fixes https://github.com/tgstation/tgstation/issues/81912 ## Why It's Good For The Game As funny as it is to produce hundreds of reviver implants out of thin air, this is a bug. --- code/modules/uplink/uplink_items/spy_unique.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/uplink/uplink_items/spy_unique.dm b/code/modules/uplink/uplink_items/spy_unique.dm index fb3de774812..b53cf60cefd 100644 --- a/code/modules/uplink/uplink_items/spy_unique.dm +++ b/code/modules/uplink/uplink_items/spy_unique.dm @@ -122,17 +122,17 @@ desc = "A syndicate tactical combat medkit, but only stocked enough to do basic first aid." item = /obj/item/storage/medkit/tactical_lite -/datum/uplink_item/implants/spy_unique/antistun +/datum/uplink_item/spy_unique/antistun name = /datum/uplink_item/implants/nuclear/antistun::name desc = /datum/uplink_item/implants/nuclear/antistun::desc item = /obj/item/autosurgeon/syndicate/anti_stun/single_use -/datum/uplink_item/implants/spy_unique/reviver +/datum/uplink_item/spy_unique/reviver name = /datum/uplink_item/implants/nuclear/reviver::name desc = /datum/uplink_item/implants/nuclear/reviver::desc item = /obj/item/autosurgeon/syndicate/reviver/single_use -/datum/uplink_item/implants/spy_unique/thermals +/datum/uplink_item/spy_unique/thermals name = /datum/uplink_item/implants/nuclear/thermals::name desc = /datum/uplink_item/implants/nuclear/thermals::desc item = /obj/item/autosurgeon/syndicate/thermal_eyes/single_use