diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm
index fad1c8e615..a98e172018 100644
--- a/code/datums/traits/negative.dm
+++ b/code/datums/traits/negative.dm
@@ -283,16 +283,16 @@
name = "Mute"
desc = "Due to some accident, medical condition, or simply by choice, you are completely unable to speak."
value = -2 //HALP MAINTS
+ mob_trait = TRAIT_MUTE
gain_text = "You find yourself unable to speak!"
lose_text = "You feel a growing strength in your vocal chords."
medical_record_text = "Functionally mute, patient is unable to use their voice in any capacity."
- var/datum/brain_trauma/severe/mute
/datum/quirk/mute/add()
var/mob/living/carbon/human/H = quirk_holder
- H.gain_trauma(mute, TRAUMA_RESILIENCE_SURGERY)
+ H.gain_trauma(TRAIT_MUTE, TRAUMA_RESILIENCE_SURGERY)
/datum/quirk/mute/on_process()
if(quirk_holder.mind && LAZYLEN(quirk_holder.mind.antag_datums))
- to_chat(quirk_holder, "Your antagonistic nature has caused your voice to return.")
+ to_chat(quirk_holder, "Your antagonistic nature has caused your voice to be heard.")
qdel(src)