diff --git a/Content.Server/Speech/EntitySystems/SlurredSystem.cs b/Content.Server/Speech/EntitySystems/SlurredSystem.cs index b29ee1700a84b6..f74b73ed319642 100644 --- a/Content.Server/Speech/EntitySystems/SlurredSystem.cs +++ b/Content.Server/Speech/EntitySystems/SlurredSystem.cs @@ -71,7 +71,7 @@ private string Accentuate(string message, float scale) 'ё' => "о", 'ч' => "щ", _ => $"{character}", - }; // AruMoon-Localization + }; // Starshine-Localization sb.Append(newString); } diff --git a/Content.Server/Speech/EntitySystems/StutteringSystem.cs b/Content.Server/Speech/EntitySystems/StutteringSystem.cs index dc706c669ca385..2994c9e074a582 100644 --- a/Content.Server/Speech/EntitySystems/StutteringSystem.cs +++ b/Content.Server/Speech/EntitySystems/StutteringSystem.cs @@ -13,7 +13,7 @@ public sealed class StutteringSystem : SharedStutteringSystem [Dependency] private readonly IRobustRandom _random = default!; // Regex of characters to stutter. - private static readonly Regex Stutter = new(@"[b-df-hj-np-tv-wxyz-б-джзк-нп-тф-щ]", // AruMoon-Localization + private static readonly Regex Stutter = new(@"[b-df-hj-np-tv-wxyz-б-джзк-нп-тф-щ]", // Starshine-Localization RegexOptions.Compiled | RegexOptions.IgnoreCase); public override void Initialize()