Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lesser Drones & Facehuggers can no longer speak #4952

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
counts_for_slots = FALSE
counts_for_roundend = FALSE
refunds_larva_if_banished = FALSE
can_hivemind_speak = FALSE
/// The lifetime hugs from this hugger
var/total_facehugs = 0
/// How many hugs the hugger needs to age
Expand All @@ -60,6 +59,10 @@
icon_xeno = 'icons/mob/xenos/facehugger.dmi'
icon_xenonid = 'icons/mob/xenonids/facehugger.dmi'

/mob/living/carbon/xenomorph/facehugger/say()
to_chat(src, SPAN_DANGER("Your psychic power isn't strong enough to communicate."))
return

/mob/living/carbon/xenomorph/facehugger/initialize_pass_flags(datum/pass_flags_container/PF)
..()
if (PF)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@
icon_xeno = 'icons/mob/xenos/lesser_drone.dmi'
icon_xenonid = 'icons/mob/xenonids/lesser_drone.dmi'

/mob/living/carbon/xenomorph/lesser_drone/say()
to_chat(src, SPAN_DANGER("Your psychic power isn't strong enough to communicate."))
return

/mob/living/carbon/xenomorph/lesser_drone/age_xeno()
if(stat == DEAD || !caste || QDELETED(src) || !client)
return
Expand Down
Loading