From ed933cedc81f4e861581137bed7fdccb6fc2bae8 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Thu, 24 Jan 2019 23:41:47 -0800 Subject: [PATCH] Rig helmets are now airtight when they should be, rather than when they shouldn't --- code/modules/clothing/spacesuits/rig/rig.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index 32160e24113..a2baa34cf5d 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -214,11 +214,11 @@ if(seal == 1) min_pressure_protection = rigsuit_min_pressure max_pressure_protection = rigsuit_max_pressure - piece.item_flags &= ~AIRTIGHT + piece.item_flags |= AIRTIGHT else min_pressure_protection = null max_pressure_protection = null - piece.item_flags |= AIRTIGHT + piece.item_flags &= ~AIRTIGHT return