Addresses Mantis #1611

Set thread culture for event processing threads in DotNetEngine.
XEngine already had this. Maybe someone with a French OS can verify
the fix.
0.6.0-stable
Melanie Thielker 2008-07-27 19:54:43 +00:00
parent 6c3db99a27
commit 8cd0c90dab
1 changed files with 3 additions and 0 deletions

View File

@ -153,6 +153,9 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase
/// </summary>
private void EventQueueThreadLoop()
{
CultureInfo USCulture = new CultureInfo("en-US");
Thread.CurrentThread.CurrentCulture = USCulture;
//myScriptEngine.Log.Info("[" + ScriptEngineName + "]: EventQueueManager Worker thread spawned");
try
{