From fa34212e60312fa86bcd5b2eba606d761f7faae3 Mon Sep 17 00:00:00 2001
From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com>
Date: Sun, 27 Jan 2019 03:35:16 -0500
Subject: [PATCH] [Ready] Fixes mute trait (#7959)
* Fuck it lets not have the trait broken
* Update negative.dm
* Update negative.dm
* Update negative.dm
---
code/datums/traits/negative.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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)