From 0822ccfc5555cea22d1002641b055b27322c711e Mon Sep 17 00:00:00 2001 From: Verkister Date: Wed, 5 Oct 2022 14:05:53 +0300 Subject: [PATCH] Earlyport harvest color fix Fixes harvested produce getting the produce color (meant for the produce part of the icon overlay and not the leaf part, which uses its own color) applied on top of both already colored overlays for a second time, most visible on mushrooms, which have ended up with hypersaturated caps and incorrect underside colors. --- code/modules/hydroponics/seed.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index b54b661ce5..5e28b64c66 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -832,7 +832,7 @@ product = new /obj/item/weapon/reagent_containers/food/snacks/grown(get_turf(user),name) if(get_trait(TRAIT_PRODUCT_COLOUR)) if(!istype(product, /mob)) - product.color = get_trait(TRAIT_PRODUCT_COLOUR) + //product.color = get_trait(TRAIT_PRODUCT_COLOUR) //Already applied correctly on overlays in icon_update, no need to double color over all overlays if(istype(product,/obj/item/weapon/reagent_containers/food)) var/obj/item/weapon/reagent_containers/food/food = product food.filling_color = get_trait(TRAIT_PRODUCT_COLOUR)