From 29a2309f70dd18e00a7ecc3319768ad199624f84 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 17 Sep 2017 22:20:58 -0500 Subject: [PATCH] [MIRROR] Fixes the issue of potted plants not having their overlays when picked up/equipped. (#2822) * Fixes the issue of potted plants not having their overlays when picked up/equipped. * Fixes the issue of potted plants not having their overlays when picked up/equipped. --- code/game/objects/structures/flora.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index 51e53e37d1..aed66c510e 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -265,6 +265,7 @@ /obj/item/twohanded/required/kirbyplants/equipped(mob/living/user) var/image/I = image(icon = 'icons/obj/flora/plants.dmi' , icon_state = src.icon_state, loc = user) + I.copy_overlays(src) I.override = 1 add_alt_appearance(/datum/atom_hud/alternate_appearance/basic/everyone, "sneaking_mission", I) I.layer = ABOVE_MOB_LAYER