From b084d6b9da4eb7fd78faa7253a4c68742157f6e4 Mon Sep 17 00:00:00 2001 From: Datraen Date: Sun, 24 Jan 2016 18:21:23 -0500 Subject: [PATCH] Uses the correct operator. --- code/modules/clothing/clothing.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 07e44ef4cd..bba3ed7cd7 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -748,7 +748,7 @@ BLIND // can't see anything rolled_down = !rolled_down if(rolled_down) body_parts_covered = initial(body_parts_covered) - body_parts_covered &= !(UPPER_TORSO|ARMS) + body_parts_covered &= ~(UPPER_TORSO|ARMS) item_state_slots[slot_w_uniform_str] = "[worn_state]_d" usr << "You roll down your [src]." else @@ -774,7 +774,7 @@ BLIND // can't see anything rolled_sleeves = !rolled_sleeves if(rolled_sleeves) - body_parts_covered &= !(ARMS) + body_parts_covered &= ~(ARMS) item_state_slots[slot_w_uniform_str] = "[worn_state]_r" usr << "You roll up your [src]'s sleeves." else