Skip to content

Commit

Permalink
b
Browse files Browse the repository at this point in the history
  • Loading branch information
567Turtle committed Dec 3, 2023
1 parent f644d4f commit c273583
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 6 additions & 1 deletion code/modules/mob/living/carbon/human/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,19 @@
else
.["message"] = message_and_language

/mob/living/carbon/say(message)
if((HAS_TRAIT(src, TRAIT_MUTE)))
to_chat(src, SPAN_DANGER("You try to speak, but nothing comes out!"))
return

/mob/living/carbon/human/say(message)

var/verb = "says"
var/alt_name = ""
var/message_range = world_view_size
var/italics = 0

if((!able_to_speak) || (HAS_TRAIT(src, TRAIT_MUTE)))
if((!able_to_speak))
to_chat(src, SPAN_DANGER("You try to speak, but nothing comes out!"))
return

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
resin_build_order = GLOB.resin_build_order_lesser_drone

/mob/living/carbon/xenomorph/lesser_drone
ADD_TRAIT(src, TRAIT_MUTE, TRAIT_SOURCE_ABILITY("mute"))
caste_type = XENO_CASTE_LESSER_DRONE
name = XENO_CASTE_LESSER_DRONE
desc = "An alien drone. Looks... smaller."
Expand Down

0 comments on commit c273583

Please sign in to comment.