Added seed into randomizer

This commit is contained in:
Bob Da Ross
2021-06-18 23:32:30 -05:00
parent 0a08e472b0
commit e72291f2ad

View File

@@ -245,13 +245,13 @@ namespace SeamlessClientPlugin.SeamlessTransfer
}
private static bool GetCustomLoadingScreenPath(List<MyObjectBuilder_Checkpoint.ModItem> Mods, out string File)
{
File = null;
string WorkshopDir = MyFileSystem.ModsPath;
List<string> backgrounds = new List<string>();
Random r = new Random();
Random r = new Random(DateTime.Now.Millisecond);
SeamlessClient.TryShow(WorkshopDir);
try
{