Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
check for correct key
Browse files Browse the repository at this point in the history
larentoun committed Jul 13, 2024
1 parent 6ce733f commit 77af90e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/emote.dm
Original file line number Diff line number Diff line change
@@ -357,7 +357,7 @@
emote_type = EMOTE_VISIBLE | EMOTE_AUDIBLE

/datum/emote/living/scream/run_emote(mob/user, params, type_override, intentional = FALSE)
if(!intentional && HAS_TRAIT(user, TRAIT_ANALGESIA))
if(!intentional && HAS_TRAIT(user, TRAIT_ANALGESIA) || ishuman(user))
return
return ..()

0 comments on commit 77af90e

Please sign in to comment.