pillow smothering now checks to see if the SMOTHEREE has a head, not the SMOTHERER (#72086)

## About The Pull Request

see title

## Why It's Good For The Game

this truly is a copy+paste moment

## Changelog

🆑 ATHATH
fix: Pillow smothering now checks to see if the SMOTHEREE has a head,
not the SMOTHERER.
/🆑
This commit is contained in:
ATH1909
2022-12-20 12:54:53 -05:00
committed by GitHub
parent f2fe1de9f7
commit d4fa76868e
+1 -1
View File
@@ -49,7 +49,7 @@
. = ..()
if(!istype(victim))
return
if(victim.wear_mask || !user.get_bodypart(BODY_ZONE_HEAD))
if(victim.wear_mask || !victim.get_bodypart(BODY_ZONE_HEAD))
return
if(HAS_TRAIT(user, TRAIT_PACIFISM))
to_chat(user, span_notice("You can't bring yourself to harm [victim]"))