diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index 81b33ba346e..3670257398a 100755 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -688,9 +688,8 @@ if(!check_slot.armor_list || check_slot == wearer.shoes || check_slot == wearer.gloves) return TRUE for(var/i in check_slot.armor_list) - var/a = check_slot.armor_list[i] - for(a in armor) - if(check_slot.armor_list[i] > 2) + for(var/a in armor) + if(check_slot.armor_list[i] > 2 && i == a) return FALSE if(check_slot.armor_list[ARMOR_BIO] > 75) //Let the nerds keep the labcoat drip return FALSE