From 6532b0b708a86c7f5b236915bdfbb9f0d53e4a85 Mon Sep 17 00:00:00 2001 From: AruMoon Date: Tue, 29 Aug 2023 20:49:21 +0500 Subject: [PATCH] rename arumoon to starshine --- Content.Server/Speech/EntitySystems/SlurredSystem.cs | 2 +- Content.Server/Speech/EntitySystems/StutteringSystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()