From 1a4a6787fe5d007c3e61fc7b2e41b29ea4395f74 Mon Sep 17 00:00:00 2001 From: MarinaGryphon Date: Sun, 11 Jul 2021 20:55:26 -0500 Subject: [PATCH] Fixes #10722 --- code/modules/hydroponics/grown.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 8e262bb69f9..bf83e28bf79 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -138,7 +138,7 @@ if("[seed.get_trait(TRAIT_PRODUCT_ICON)]-leaf" in cached_icon_states('icons/obj/hydroponics_products.dmi')) var/image/fruit_leaves = image('icons/obj/hydroponics_products.dmi',"[seed.get_trait(TRAIT_PRODUCT_ICON)]-leaf") fruit_leaves.color = "[seed.get_trait(TRAIT_PLANT_COLOUR)]" - add_overlay(fruit_leaves) + plant_icon.add_overlay(fruit_leaves) SSplants.plant_icon_cache[icon_key] = plant_icon add_overlay(plant_icon)