From 852562e19bbe855bfa806ecc2044f82d3809eeb1 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Mon, 8 Jan 2024 00:58:28 -0800 Subject: [PATCH] Makes a couple variables not arbitrarily converted to strings for no reason (??) (#6259) ## About The Pull Request As title. ?? ## Why It's Good For The Game It causes runtimes and stuff not to work for no reason ## Changelog :cl: fix: Some mask stuff will actually work now probably /:cl: --- code/modules/clothing/masks/miscellaneous.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 71bca28fbda..7397943fa29 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -219,8 +219,8 @@ else src.icon_state = initial(icon_state) to_chat(user, "You untie the bandana and spread it out.") - slot_flags = "[initial(slot_flags)]" - body_cover_flags = "[initial(body_cover_flags)]" + slot_flags = initial(slot_flags) + body_cover_flags = initial(body_cover_flags) update_worn_icon() //so our mob-overlays update /*