Skip to content

Commit

Permalink
Felinids play the sound effect when using *gaspshock (#190)
Browse files Browse the repository at this point in the history
* Felinids play the sound effect when using *gaspshock

* Update emote.dm

---------

Co-authored-by: PapaMichael <[email protected]>
Co-authored-by: Bloop <[email protected]>
  • Loading branch information
3 people authored and Iajret committed Jan 3, 2024
1 parent 94e823d commit b24731f
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
Expand Up @@ -205,7 +205,7 @@
if(!ishuman(user))
return
var/mob/living/carbon/human/human_user = user
if(!HAS_MIND_TRAIT(human_user, TRAIT_MIMING)) // NOVA EDIT CHANGE - Let other species gasp - ORIGINAL: if(human_user.dna.species.id == SPECIES_HUMAN && !HAS_MIND_TRAIT(human_user, TRAIT_MIMING))
if(!HAS_MIND_TRAIT(human_user, TRAIT_MIMING)) // NOVA EDIT CHANGE - Let other species gasp - ORIGINAL: if(ishumanbasic(human_user) || isfelinid(human_user) && !HAS_MIND_TRAIT(human_user, TRAIT_MIMING))
if(human_user.physique == FEMALE)
return pick('sound/voice/human/gasp_female1.ogg', 'sound/voice/human/gasp_female2.ogg', 'sound/voice/human/gasp_female3.ogg')
else
Expand Down

0 comments on commit b24731f

Please sign in to comment.