Merge branch 'juliancoffee/fix-chat' into 'master'

Fix /tell messages

See merge request veloren/veloren!4309
This commit is contained in:
Illia Denysenko 2024-02-06 13:45:53 +00:00
commit 425684908b

View File

@ -215,6 +215,7 @@ pub fn localize_chat_message(
.get_msg_ctx(key, &i18n::fluent_args! {
"alias" => name_format(person_to_show),
"user_gender" => gender_str(person_to_show),
"msg" => localization.get_content(msg.content()),
})
.into_owned()
},
@ -243,6 +244,7 @@ pub fn localize_chat_message(
localization
.get_msg_ctx(key, &i18n::fluent_args! {
"alias" => name_format(person_to_show),
"msg" => localization.get_content(msg.content()),
})
.into_owned()
},