From 7bfc6077b92193ac9f52c015f3462340fa411e0c Mon Sep 17 00:00:00 2001 From: Brant Martin Date: Sun, 25 Aug 2019 11:04:08 -0400 Subject: [PATCH] Set game thread locale to English. Should give English exceptions now. --- Torch/TorchBase.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Torch/TorchBase.cs b/Torch/TorchBase.cs index 8128711..b8d0c30 100644 --- a/Torch/TorchBase.cs +++ b/Torch/TorchBase.cs @@ -414,6 +414,7 @@ namespace Torch Game.SignalStart(); if (!Game.WaitFor(VRageGame.GameState.Running)) Log.Warn("Failed to wait for the game to be started"); + Invoke(() => Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US")); } ///