From 0dfbfafb820d123d7c933f11e81eb46f576e7251 Mon Sep 17 00:00:00 2001 From: Blub <32146549+ArtificialLegacy@users.noreply.github.com> Date: Tue, 6 Sep 2022 21:24:08 -0400 Subject: [PATCH] fixes generating in parallel not updating seed correctly --- ui/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/index.html b/ui/index.html index e67d5b33..530be365 100644 --- a/ui/index.html +++ b/ui/index.html @@ -769,7 +769,7 @@ async function makeImage() { let successCount = 0 for (let i = 0; i < batchCount; i++) { - reqBody['seed'] = seed + i + reqBody['seed'] = seed + (i * batchSize) let success = await doMakeImage(reqBody)