From da004981e66607e76ba295bcbb41cdd281e230c6 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Mon, 10 Jul 2017 16:44:57 -0500 Subject: [PATCH] Rolling sleeves on flannel shirts now uncovers your arms --- code/modules/clothing/suits/miscellaneous.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 27fe815ceb..751b5c483f 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -877,9 +877,11 @@ obj/item/clothing/suit/storage/toggle/peacoat if(rolled == 0) rolled = 1 + body_parts_covered &= ~(ARMS) usr << "You roll up the sleeves of your [src]." else rolled = 0 + body_parts_covered = initial(body_parts_covered) usr << "You roll down the sleeves of your [src]." update_icon()