rename OpenRA.Support.Random aka XRandom to MersenneTwister

This commit is contained in:
Matthias Mailänder
2014-05-18 21:53:21 +02:00
parent d7c445b117
commit 187362e80e
15 changed files with 32 additions and 31 deletions

View File

@@ -21,6 +21,7 @@ using OpenRA.GameRules;
using OpenRA.Graphics;
using OpenRA.Network;
using OpenRA.Primitives;
using OpenRA.Support;
using XTimer = System.Timers.Timer;
@@ -39,7 +40,7 @@ namespace OpenRA.Server
public readonly int Port;
int randomSeed;
public readonly Support.Random Random = new Support.Random();
public readonly MersenneTwister Random = new MersenneTwister();
// Valid player connections
public List<Connection> Conns = new List<Connection>();