diff --git a/code/modules/clothing/head/_head.dm b/code/modules/clothing/head/_head.dm index 4f826d8310..edfaed904c 100644 --- a/code/modules/clothing/head/_head.dm +++ b/code/modules/clothing/head/_head.dm @@ -77,11 +77,11 @@ if(iscyborg(hit_atom)) var/mob/living/silicon/robot/R = hit_atom ///hats in the borg's blacklist bounce off - if(is_type_in_typecache(src, R.blacklisted_hats) || R.hat_offset == INFINITY) + if(!is_type_in_typecache(src, R.equippable_hats) || R.hat_offset == INFINITY) R.visible_message("[src] bounces off [R]!", "[src] bounces off you, falling to the floor.") return else - R.visible_message("[src] lands neatly on top of [R]", "[src] lands perfectly on top of you.") + R.visible_message("[src] lands neatly on top of [R].", "[src] lands perfectly on top of you.") R.place_on_head(src) //hats aren't designed to snugly fit borg heads or w/e so they'll always manage to knock eachother off /obj/item/clothing/head/worn_overlays(isinhands = FALSE)