Skip to content

Commit

Permalink
Merge pull request #50 from zoktiik/patch-1
Browse files Browse the repository at this point in the history
port my beheaded player hearing fix
  • Loading branch information
TheGreatKitsune authored Oct 29, 2024
2 parents 844b8a8 + 36de51e commit 9ef12f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/carbon_defense.dm
Original file line number Diff line number Diff line change
Expand Up @@ -544,5 +544,5 @@
/mob/living/carbon/can_hear()
. = FALSE
var/obj/item/organ/ears/ears = getorganslot(ORGAN_SLOT_EARS)
if(istype(ears) && !ears.deaf)
if((istype(ears) && !ears.deaf) || (src.stat == DEAD)) // 2nd check so you can hear messages when beheaded
. = TRUE

0 comments on commit 9ef12f2

Please sign in to comment.