From d9951f2bf76773aa161cdffb2e91a39c6dea3add Mon Sep 17 00:00:00 2001 From: Archie <72550375+Archimus12@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:51:09 +0100 Subject: [PATCH] Makes Cytology Vendor sell the correct type of bio suits. (#86122) ## About The Pull Request Makes the Cytology Vendor sell science bio suits instead of normal/medical bio suits and the correct type of lab coats. ## Why It's Good For The Game A science vending machine should sell science bio suits instead of blue, medical bio suits. ## Changelog :cl: fix: Makes the Cytology Vendor sell science bio suits instead of medical bio suits. fix: Makes the Cytology Vendor sell science lab coats instead of normal lab coats. /:cl: --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/modules/vending/cytopro.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/vending/cytopro.dm b/code/modules/vending/cytopro.dm index 77fdf8b895c..ce351be7769 100644 --- a/code/modules/vending/cytopro.dm +++ b/code/modules/vending/cytopro.dm @@ -15,9 +15,9 @@ /obj/item/storage/box/monkeycubes = 3, /obj/item/biopsy_tool = 3, /obj/item/clothing/under/rank/rnd/scientist = 5, - /obj/item/clothing/suit/toggle/labcoat = 5, - /obj/item/clothing/suit/bio_suit = 3, - /obj/item/clothing/head/bio_hood = 3, + /obj/item/clothing/suit/toggle/labcoat/science = 5, + /obj/item/clothing/suit/bio_suit/scientist = 3, + /obj/item/clothing/head/bio_hood/scientist = 3, /obj/item/reagent_containers/dropper = 5, /obj/item/reagent_containers/syringe = 5, /obj/item/petri_dish/random = 6,