From b40cc6d5946ffdc1eadeb62f007c977af63af2be Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Thu, 11 Jul 2024 03:14:19 +0300 Subject: [PATCH] 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 :cl: fix: You no longer try to pull out someones eyes in combat mode if they have cranial fissure /:cl: --- code/datums/wounds/cranial_fissure.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/wounds/cranial_fissure.dm b/code/datums/wounds/cranial_fissure.dm index 0b7c00dee7e..df973d3bdec 100644 --- a/code/datums/wounds/cranial_fissure.dm +++ b/code/datums/wounds/cranial_fissure.dm @@ -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))