From d87ee8d293fec210195ea486da0f0295868a3ce6 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Fri, 26 Oct 2018 17:01:28 -0400 Subject: [PATCH] Changeling messages now use the proper style (#41148) --- code/datums/saymode.dm | 10 +++++----- code/modules/antagonists/changeling/powers/linglink.dm | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/datums/saymode.dm b/code/datums/saymode.dm index ed6edd11abb..e319a9af056 100644 --- a/code/datums/saymode.dm +++ b/code/datums/saymode.dm @@ -17,7 +17,7 @@ /datum/saymode/changeling/handle_message(mob/living/user, message, datum/language/language) switch(user.lingcheck()) if(LINGHIVE_LINK) - var/msg = "[user.mind]: [message]" + var/msg = "[user.mind]: [message]" for(var/_M in GLOB.player_list) var/mob/M = _M if(M in GLOB.dead_mob_list) @@ -33,13 +33,13 @@ to_chat(M, msg) if(LINGHIVE_OUTSIDER) if(prob(40)) - to_chat(M, "We can faintly sense an outsider trying to communicate through the hivemind...") + to_chat(M, "We can faintly sense an outsider trying to communicate through the hivemind...") if(LINGHIVE_LING) if (user.has_trait(CHANGELING_HIVEMIND_MUTE)) to_chat(user, "The poison in the air hinders our ability to interact with the hivemind.") return FALSE var/datum/antagonist/changeling/changeling = user.mind.has_antag_datum(/datum/antagonist/changeling) - var/msg = "[changeling.changelingID]: [message]" + var/msg = "[changeling.changelingID]: [message]" user.log_talk(message, LOG_SAY, tag="changeling [changeling.changelingID]") for(var/_M in GLOB.player_list) var/mob/M = _M @@ -56,9 +56,9 @@ to_chat(M, msg) if(LINGHIVE_OUTSIDER) if(prob(40)) - to_chat(M, "We can faintly sense another of our kind trying to communicate through the hivemind...") + to_chat(M, "We can faintly sense another of our kind trying to communicate through the hivemind...") if(LINGHIVE_OUTSIDER) - to_chat(user, "Our senses have not evolved enough to be able to communicate this way...") + to_chat(user, "Our senses have not evolved enough to be able to communicate this way...") return FALSE diff --git a/code/modules/antagonists/changeling/powers/linglink.dm b/code/modules/antagonists/changeling/powers/linglink.dm index cd7c9441372..64c93788cb5 100644 --- a/code/modules/antagonists/changeling/powers/linglink.dm +++ b/code/modules/antagonists/changeling/powers/linglink.dm @@ -51,10 +51,10 @@ for(var/mi in GLOB.mob_list) var/mob/M = mi if(M.lingcheck() == LINGHIVE_LING) - to_chat(M, "We can sense a foreign presence in the hivemind...") + to_chat(M, "We can sense a foreign presence in the hivemind...") target.mind.linglink = 1 target.say(":g AAAAARRRRGGGGGHHHHH!!") - to_chat(target, "You can now communicate in the changeling hivemind, say \":g message\" to communicate!") + to_chat(target, "You can now communicate in the changeling hivemind, say \":g message\" to communicate!") target.reagents.add_reagent("salbutamol", 40) // So they don't choke to death while you interrogate them sleep(1800) SSblackbox.record_feedback("nested tally", "changeling_powers", 1, list("[name]", "[i]"))