mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
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:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user