Skip to content

Commit

Permalink
Hats no longer cover mouths (#82498) (#2031)
Browse files Browse the repository at this point in the history
Co-authored-by: FlufflesTheDog <[email protected]>
  • Loading branch information
Absolucy and FlufflesTheDog authored May 27, 2024
1 parent 0537280 commit 86092bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/surgery/surgery_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
if(covered_locations & HEAD)
return FALSE
if(BODY_ZONE_PRECISE_EYES)
if(covered_locations & HEAD || face_covered & HIDEEYES || eyesmouth_covered & GLASSESCOVERSEYES)
if((face_covered & HIDEEYES) || (eyesmouth_covered & (MASKCOVERSEYES|HEADCOVERSEYES|GLASSESCOVERSEYES)))
return FALSE
if(BODY_ZONE_PRECISE_MOUTH)
if(covered_locations & HEAD || face_covered & HIDEFACE || eyesmouth_covered & MASKCOVERSMOUTH || eyesmouth_covered & HEADCOVERSMOUTH)
if((face_covered & HIDEFACE) || (eyesmouth_covered & (MASKCOVERSMOUTH|HEADCOVERSMOUTH)))
return FALSE
if(BODY_ZONE_CHEST)
if(covered_locations & CHEST)
Expand Down

0 comments on commit 86092bc

Please sign in to comment.