From: MaxSMokeSkaarj Date: Fri, 31 Oct 2025 10:35:23 +0000 (+1000) Subject: Merge branch 'master' of ssh://github/space-wizards/space-station-14 X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=a71be9674bf0993c3f3b9ea776ab7b7e40735b37;p=space-station-14.git Merge branch 'master' of ssh://github/space-wizards/space-station-14 --- a71be9674bf0993c3f3b9ea776ab7b7e40735b37 diff --cc Content.Server/Speech/EntitySystems/BarkAccentSystem.cs index 2530edc4a0,27e42c70ed..58826a8f7e --- a/Content.Server/Speech/EntitySystems/BarkAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/BarkAccentSystem.cs @@@ -39,13 -35,10 +41,13 @@@ namespace Content.Server.Speech.EntityS } return message.Replace("!", _random.Pick(Barks)) - .Replace("l", "r").Replace("L", "R"); + // RU-Localization-Start + .Replace("l", "r").Replace("L", "R") + .Replace("л", "р").Replace("Л", "Р"); + // RU-Localization-End } - private void OnAccent(EntityUid uid, BarkAccentComponent component, AccentGetEvent args) + private void OnAccent(Entity entity, ref AccentGetEvent args) { args.Message = Accentuate(args.Message); }