diff --git a/Content.Server/Speech/Components/SpanishAccentComponent.cs b/Content.Server/Speech/Components/SpanishAccentComponent.cs index dec155f7fd..73272bd3d0 100644 --- a/Content.Server/Speech/Components/SpanishAccentComponent.cs +++ b/Content.Server/Speech/Components/SpanishAccentComponent.cs @@ -19,7 +19,7 @@ namespace Content.Server.Speech.Components private string InsertS(string message) { // Replace every new Word that starts with s/S - var msg = message.Replace(" s", " es").Replace(" S", "Es"); + var msg = message.Replace(" s", " es").Replace(" S", " Es"); // Still need to check if the beginning of the message starts if (msg.StartsWith("s"))