Skip to content

Commit

Permalink
Merge branch 'master' into queen-evo-qol
Browse files Browse the repository at this point in the history
  • Loading branch information
Red-byte3D committed Jan 20, 2024
2 parents c41e72f + 61a765c commit 333a9c3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,13 @@
return

/mob/living/carbon/xenomorph/facehugger/emote(act, m_type, message, intentional, force_silence)
// Custom emote
if(act == "me")
return ..()

// Otherwise, ""roar""!
playsound(loc, "alien_roar_larva", 15)
return TRUE

/mob/living/carbon/xenomorph/facehugger/get_status_tab_items()
. = ..()
Expand Down
6 changes: 6 additions & 0 deletions code/modules/mob/living/carbon/xenomorph/castes/Larva.dm
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,13 @@
return larva

/mob/living/carbon/xenomorph/larva/emote(act, m_type, message, intentional, force_silence)
// Custom emote
if(act == "me")
return ..()

// Otherwise, ""roar""!
playsound(loc, "alien_roar_larva", 15)
return TRUE

/mob/living/carbon/xenomorph/larva/is_xeno_grabbable()
return TRUE
Expand Down
4 changes: 4 additions & 0 deletions html/changelogs/AutoChangeLog-pr-5496.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: "SabreML"
delete-after: True
changes:
- rscadd: "Made larvae and facehuggers able to use custom emotes."

0 comments on commit 333a9c3

Please sign in to comment.