Add missing space (#4281)

This commit is contained in:
Eugene
2021-07-18 00:04:04 +03:00
committed by GitHub
parent 97a3866a40
commit 0a93e602ca

View File

@@ -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"))