Skip to content

Commit

Permalink
Merge pull request #9 from IllidanS4/patch-1
Browse files Browse the repository at this point in the history
Reset culture to invariant
  • Loading branch information
barncastle authored Mar 30, 2021
2 parents a555c07 + d2bcfc5 commit a482f9c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions WorldServer/WorldServer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Globalization;
using Common.Constants;
using Common.Cryptography;
using Common.Logging;
Expand All @@ -14,6 +15,8 @@ internal class WorldServer

private static void Main()
{
CultureInfo.CurrentCulture = CultureInfo.CurrentUICulture = CultureInfo.DefaultThreadCurrentCulture = CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.InvariantCulture;

Log.Message(LogType.INIT, " AIO SANDBOX ");
Log.Message(LogType.INIT, " REALM/PROXY/WORLD ");
Log.Message();
Expand Down

0 comments on commit a482f9c

Please sign in to comment.