From 8cd3448de420e4d81177c2d46bcf7bdb28f12ddc Mon Sep 17 00:00:00 2001 From: warior4356 Date: Wed, 30 Sep 2020 12:43:21 -0700 Subject: [PATCH] Switches oversight from o to x. vocal cords are now ~ --- code/modules/mob/language.dm | 2 +- code/modules/mob/living/say.dm | 3 +-- code/modules/surgery/organs/vocal_cords.dm | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/language.dm b/code/modules/mob/language.dm index 03eea87f279..50d9b6d5fd5 100644 --- a/code/modules/mob/language.dm +++ b/code/modules/mob/language.dm @@ -153,7 +153,7 @@ ask_verb = "hisses" exclaim_verb = "roars" colour = "soghun" - key = "un" + key = "o" flags = RESTRICTED syllables = list("za","az","ze","ez","zi","iz","zo","oz","zu","uz","zs","sz","ha","ah","he","eh","hi","ih", \ "ho","oh","hu","uh","hs","sh","la","al","le","el","li","il","lo","ol","lu","ul","ls","sl","ka","ak","ke","ek", \ diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index d2d4f8c293c..a72c8544f84 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -15,7 +15,6 @@ GLOBAL_LIST_INIT(department_radio_keys, list( ":u" = "Supply", "#u" = "Supply", ".u" = "Supply", ":z" = "Service", "#z" = "Service", ".z" = "Service", ":p" = "AI Private", "#p" = "AI Private", ".p" = "AI Private", - ":x" = "cords", "#x" = "cords", ".x" = "cords", ":R" = "right ear", "#R" = "right ear", ".R" = "right ear", ":L" = "left ear", "#L" = "left ear", ".L" = "left ear", @@ -35,7 +34,7 @@ GLOBAL_LIST_INIT(department_radio_keys, list( ":$" = "Response Team", "#$" = "Response Team", ".$" = "Response Team", ":-" = "Special Ops", "#-" = "Special Ops", ".-" = "Special Ops", ":_" = "SyndTeam", "#_" = "SyndTeam", "._" = "SyndTeam", - ":X" = "cords", "#X" = "cords", ".X" = "cords" + ":~" = "cords", "#~" = "cords", ".~" = "cords" )) GLOBAL_LIST_EMPTY(channel_to_radio_key) diff --git a/code/modules/surgery/organs/vocal_cords.dm b/code/modules/surgery/organs/vocal_cords.dm index dd73cf0f02a..8cc89b0a624 100644 --- a/code/modules/surgery/organs/vocal_cords.dm +++ b/code/modules/surgery/organs/vocal_cords.dm @@ -123,7 +123,7 @@ GLOBAL_DATUM_INIT(multispin_words, /regex, regex("like a record baby")) var/command = input(owner, "Speak with the Voice of God", "Command") if(!command) return - owner.say(".x[command]") + owner.say(".~[command]") /obj/item/organ/internal/vocal_cords/colossus/prepare_eat() return