From 28e620b6a120794d3f8a4eedf2460d1add6c5def Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Tue, 30 Apr 2019 15:21:19 -0400 Subject: [PATCH] Shuts Travis Up Adjustments to give display_names to parent datums. --- .../loadout/loadout_implants.dm | 20 ++++++++----------- 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_implants.dm b/code/modules/client/preference_setup/loadout/loadout_implants.dm index d4a57fec27..d58e3dc762 100644 --- a/code/modules/client/preference_setup/loadout/loadout_implants.dm +++ b/code/modules/client/preference_setup/loadout/loadout_implants.dm @@ -2,8 +2,13 @@ /datum/gear/implant - exploitable = 0 + display_name = "implant, tracking" + path = /obj/item/weapon/implant/tracking/weak + cost = 0 //VOREStation Edit. Changed cost to 0 + slot = "implant" + exploitable = 1 sort_category = "Implants" + /* VOREStation Edit - Make languages great again /datum/gear/utility/implant/eal //This does nothing if you don't actually know EAL. display_name = "implant, language, EAL" @@ -12,21 +17,12 @@ slot = "implant" exploitable = 1*/ -/datum/gear/implant/tracking - display_name = "implant, tracking" - path = /obj/item/weapon/implant/tracking/weak - cost = 0 //VOREStation Edit. Changed cost to 0 - slot = "implant" - exploitable = 1 - //Reagent implants - cost of 2 to reduce chance of abuse /datum/gear/implant/reagent_generator - exploitable = 0 - cost = 2 - -/datum/gear/implant/reagent_generator/milk display_name = "implant, milk production" path = /obj/item/weapon/implanter/reagent_generator/milk + exploitable = 0 + cost = 2 /datum/gear/implant/reagent_generator/egg display_name = "implant, egg production"