]> git.cworth.org Git - zombocom-ai/blobdiff - index.js
Make ZomboCom's random number generator degrade even more
[zombocom-ai] / index.js
index b80943fb6b3c8da53cd8eb0fa3963560dfd7aa9b..babe27068b4d83094c451b633da72367ce4d296d 100644 (file)
--- a/index.js
+++ b/index.js
@@ -229,10 +229,10 @@ io.on('connection', (socket) => {
             } else {
 
                 // Inject the target seed for the "dice" prompt once every
-                // 6 requests for a random seed (and only if the word
+                // 4 requests for a random seed (and only if the word
                 // "dice" does not appear in the prompt).
                 if (!code && !prompt.toLowerCase().includes("dice")) {
-                    if (state.images.length % 6 == 0) {
+                    if (state.images.length % 4 == 0) {
                         code = 319630254;
                     }
                 }