From 1f87360d2c8fe523f3d6dbbba2cbcbb30cae1ab3 Mon Sep 17 00:00:00 2001 From: private-tristan <54422837+private-tristan@users.noreply.github.com> Date: Fri, 9 Feb 2024 18:31:31 -0500 Subject: [PATCH] WY Research Consultant gets reagent scanner goggles (#5682) # About the pull request WY consultant (chem goon ERT) gets scigoggles so that they can identify the various chemicals that research gets. # Explain why it's good for the game It's a bit strange how the research consultant doesn't actually have a way to identify whether the vial they're given is the same one as the DDI paper tells them it is without using a chem machine. # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: add: Chem Goon Research Consultant now spawns with reagent scanner goggles. /:cl: --- code/modules/gear_presets/wy_goons.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/gear_presets/wy_goons.dm b/code/modules/gear_presets/wy_goons.dm index 54b436c20854..a8f3a443311e 100644 --- a/code/modules/gear_presets/wy_goons.dm +++ b/code/modules/gear_presets/wy_goons.dm @@ -135,6 +135,7 @@ /datum/equipment_preset/goon/researcher/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate, WEAR_FEET)