diff --git a/code/modules/antagonists/traitor/datum_traitor.dm b/code/modules/antagonists/traitor/datum_traitor.dm index 377f569010..828e19e3f6 100644 --- a/code/modules/antagonists/traitor/datum_traitor.dm +++ b/code/modules/antagonists/traitor/datum_traitor.dm @@ -247,7 +247,10 @@ var/phrases = jointext(GLOB.syndicate_code_phrase, ", ") var/responses = jointext(GLOB.syndicate_code_response, ", ") - to_chat(traitor_mob, "The Syndicate have provided you with the following codewords to identify fellow agents:
Code Phrase:[phrases]
Code Response
:[responses]

Use the codewords during regular conversation to identify other agents. Proceed with caution, however, as everyone is a potential foe.
You memorize the codewords, allowing you to recognise them when heard.") + var/dat = "The Syndicate have provided you with the following codewords to identify fellow agents:\n" + dat += "Code Phrase: [phrases]\n" + dat += "Code Response: [responses]" + to_chat(traitor_mob, dat) antag_memory += "Code Phrase: [phrases]
" antag_memory += "Code Response: [responses]
"