From 8a1f9761088aaeb8eda8934d7e9f984a21dbcb92 Mon Sep 17 00:00:00 2001 From: ike709 Date: Wed, 9 Feb 2022 04:35:25 -0600 Subject: [PATCH] Removes a pointless `initial()` call from chameleon changing (#17392) --- code/modules/clothing/chameleon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/chameleon.dm b/code/modules/clothing/chameleon.dm index c69c58df137..9308bc944c1 100644 --- a/code/modules/clothing/chameleon.dm +++ b/code/modules/clothing/chameleon.dm @@ -161,7 +161,7 @@ I.sprite_sheets = P.sprite_sheets qdel(P) - if(istype(I, /obj/item/clothing) && istype(initial(picked_item), /obj/item/clothing)) + if(istype(I, /obj/item/clothing) && istype(picked_item, /obj/item/clothing)) var/obj/item/clothing/CL = I var/obj/item/clothing/PCL = picked_item CL.flags_cover = initial(PCL.flags_cover)