You no longer try to pull out someones eyes in combat mode if they have cranial fissure (#84822)

## About The Pull Request

Closes #82526
Cranial fissure didn't check for combat mode so if someone had the
trauma you weren't able to punch them in the head

## Changelog
🆑
fix: You no longer try to pull out someones eyes in combat mode if they
have cranial fissure
/🆑
This commit is contained in:
SmArtKar
2024-07-11 02:14:19 +02:00
committed by GitHub
parent 3771f2a4da
commit b40cc6d594
+1 -1
View File
@@ -81,7 +81,7 @@
)
/datum/wound/cranial_fissure/try_handling(mob/living/user)
if (user.usable_hands <= 0)
if (user.usable_hands <= 0 || user.combat_mode)
return FALSE
if(!isnull(user.hud_used?.zone_select) && (user.zone_selected != BODY_ZONE_HEAD && user.zone_selected != BODY_ZONE_PRECISE_EYES))