]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Merge branch 'master' of ssh://github/space-wizards/space-station-14
authorMaxSMokeSkaarj <vnazarov@smokeofanarchy.ru>
Fri, 31 Oct 2025 10:35:23 +0000 (20:35 +1000)
committerMaxSMokeSkaarj <vnazarov@smokeofanarchy.ru>
Fri, 31 Oct 2025 10:35:23 +0000 (20:35 +1000)
1  2 
Content.Server/Speech/EntitySystems/BarkAccentSystem.cs
Content.Server/Speech/EntitySystems/OwOAccentSystem.cs

index 2530edc4a0bde1f9d22d6c35cfd321257a936677,27e42c70edd54305913726d99afc4d74809eddff..58826a8f7e0e625377681517263f5744f6da073b
@@@ -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<BarkAccentComponent> entity, ref AccentGetEvent args)
          {
              args.Message = Accentuate(args.Message);
          }