Added seed into randomizer
This commit is contained in:
@@ -245,13 +245,13 @@ namespace SeamlessClientPlugin.SeamlessTransfer
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private static bool GetCustomLoadingScreenPath(List<MyObjectBuilder_Checkpoint.ModItem> Mods, out string File)
|
private static bool GetCustomLoadingScreenPath(List<MyObjectBuilder_Checkpoint.ModItem> Mods, out string File)
|
||||||
{
|
{
|
||||||
File = null;
|
File = null;
|
||||||
string WorkshopDir = MyFileSystem.ModsPath;
|
string WorkshopDir = MyFileSystem.ModsPath;
|
||||||
List<string> backgrounds = new List<string>();
|
List<string> backgrounds = new List<string>();
|
||||||
Random r = new Random();
|
Random r = new Random(DateTime.Now.Millisecond);
|
||||||
SeamlessClient.TryShow(WorkshopDir);
|
SeamlessClient.TryShow(WorkshopDir);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user