From e72291f2ad81a8d4370f8ea850737f62c6602232 Mon Sep 17 00:00:00 2001 From: Bob Da Ross <52760019+BobDaRoss@users.noreply.github.com> Date: Fri, 18 Jun 2021 23:32:30 -0500 Subject: [PATCH] Added seed into randomizer --- Utilities/Patches.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Utilities/Patches.cs b/Utilities/Patches.cs index 8b06657..7229cbe 100644 --- a/Utilities/Patches.cs +++ b/Utilities/Patches.cs @@ -245,13 +245,13 @@ namespace SeamlessClientPlugin.SeamlessTransfer } - + private static bool GetCustomLoadingScreenPath(List Mods, out string File) { File = null; string WorkshopDir = MyFileSystem.ModsPath; List backgrounds = new List(); - Random r = new Random(); + Random r = new Random(DateTime.Now.Millisecond); SeamlessClient.TryShow(WorkshopDir); try {