diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index f493c3e6f5..1097e7e851 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -1,3 +1,4 @@ +using System.Globalization; using System.Linq; using Content.Client.Administration.Managers; using Content.Client.Chat; @@ -236,8 +237,8 @@ public sealed class ChatUIController : UIController var split = sizing.Split(","); var chatSize = new Vector2( - float.Parse(split[0]), - float.Parse(split[1])); + float.Parse(split[0], CultureInfo.InvariantCulture), + float.Parse(split[1], CultureInfo.InvariantCulture)); screen.SetChatSize(chatSize);