From e7e998dfc0840c31cd80e4a19836cf15014aca60 Mon Sep 17 00:00:00 2001 From: aaaa1023 <74441292+aaaa1023@users.noreply.github.com> Date: Tue, 11 Jun 2024 06:51:50 -0600 Subject: [PATCH] Removes a single crayon from the mortidrobe (#83808) ## About The Pull Request Removes one (1) white crayon from the coroner vendor. ## Why It's Good For The Game Fixes crayon economy. There's 2 entries of a white crayon in the Mortidrobe and the lower one seems to overwrite the higher one in the list . ## Changelog :cl: fix: there is now one more crayon in the Mortidrobe. /:cl: --- code/modules/vending/wardrobes.dm | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/code/modules/vending/wardrobes.dm b/code/modules/vending/wardrobes.dm index 88ac58370df..015c3d6f7e0 100644 --- a/code/modules/vending/wardrobes.dm +++ b/code/modules/vending/wardrobes.dm @@ -316,28 +316,27 @@ product_ads = "Any day above ground is a good one!;My day starts when yours ends!;And they call this a dying business!;See you when you're dead!" vend_reply = "Don't forget your \"Buy one get one free\" burial deal!" products = list( - /obj/item/toy/crayon/white = 2, + /obj/item/cautery/cruel = 1, + /obj/item/clothing/gloves/latex/coroner = 1, /obj/item/clothing/head/utility/surgerycap/black = 1, /obj/item/clothing/mask/surgical = 1, - /obj/item/clothing/under/rank/medical/scrubs/coroner = 1, - /obj/item/clothing/under/rank/medical/coroner = 1, - /obj/item/clothing/under/rank/medical/coroner/skirt = 1, - /obj/item/clothing/suit/toggle/labcoat/coroner = 1, + /obj/item/clothing/shoes/sneakers/black = 1, /obj/item/clothing/suit/apron/surgical = 1, /obj/item/clothing/suit/hooded/wintercoat/medical/coroner = 1, - /obj/item/clothing/gloves/latex/coroner = 1, - /obj/item/clothing/shoes/sneakers/black = 1, + /obj/item/clothing/suit/toggle/labcoat/coroner = 1, + /obj/item/clothing/under/rank/medical/coroner = 1, + /obj/item/clothing/under/rank/medical/coroner/skirt = 1, + /obj/item/clothing/under/rank/medical/scrubs/coroner = 1, + /obj/item/hemostat/cruel = 1, + /obj/item/radio/headset/headset_srvmed = 2, + /obj/item/retractor/cruel = 1, + /obj/item/scalpel/cruel = 1, /obj/item/storage/backpack/coroner = 1, - /obj/item/storage/backpack/satchel/coroner = 1, /obj/item/storage/backpack/duffelbag/coroner = 1, /obj/item/storage/backpack/messenger/coroner = 1, + /obj/item/storage/backpack/satchel/coroner = 1, /obj/item/storage/box/bodybags = 3, - /obj/item/scalpel/cruel = 1, - /obj/item/retractor/cruel = 1, - /obj/item/hemostat/cruel = 1, - /obj/item/cautery/cruel = 1, - /obj/item/toy/crayon/white = 1, - /obj/item/radio/headset/headset_srvmed = 2, + /obj/item/toy/crayon/white = 2, ) contraband = list( /obj/item/knife/ritual = 1,