Skip to content

Commit

Permalink
larva & huggers
Browse files Browse the repository at this point in the history
  • Loading branch information
SabreML committed Jan 19, 2024
1 parent 97a3c6e commit 0c86909
Show file tree
Hide file tree
Showing 2 changed files with 12 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

0 comments on commit 0c86909

Please sign in to comment.