From f97f6db700b0d3287a236bda5ef64aa995d5061f Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Thu, 21 Sep 2023 23:27:46 -0700 Subject: [PATCH] fixes a direct armor access (#6006) --- code/modules/clothing/suits/hooded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/suits/hooded.dm b/code/modules/clothing/suits/hooded.dm index c50a1548aae9..1469bb799eda 100644 --- a/code/modules/clothing/suits/hooded.dm +++ b/code/modules/clothing/suits/hooded.dm @@ -62,7 +62,7 @@ hood.atom_flags |= PHORONGUARD else hood.atom_flags &= ~PHORONGUARD - hood.set_armor(armor) + hood.set_armor(fetch_armor()) hood.copy_atom_colour(src) // equip after armor / color changes H.equip_to_slot_if_possible(hood, SLOT_ID_HEAD)