Skip to content

Commit

Permalink
We are transferring the convector from Russian to English inside get_…
Browse files Browse the repository at this point in the history
…say mode, which makes it more convenient to use it.
  • Loading branch information
kukurua committed Dec 26, 2024
1 parent 6f9b9a3 commit 13ae1d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ GLOBAL_LIST_INIT(department_radio_keys, list(
var/static/list/one_character_prefix = list(MODE_HEADSET = TRUE, MODE_ROBOT = TRUE, MODE_WHISPER = TRUE, MODE_SING = TRUE)


var/datum/saymode/saymode = get_saymode(message, lowertext(convert_ru_key_to_en_key(talk_key)))
var/datum/saymode/saymode = get_saymode(message, talk_key)
var/message_mode = get_message_mode(message)
var/original_message = message
var/in_critical = InCritical()
Expand Down Expand Up @@ -364,4 +364,4 @@ GLOBAL_LIST_INIT(department_radio_keys, list(


/mob/living/proc/get_saymode(message, talk_key)
return SSradio.saymodes[talk_key]
return SSradio.saymodes[lowertext(convert_ru_key_to_en_key(talk_key))]

0 comments on commit 13ae1d8

Please sign in to comment.