diff --git a/build/screen.js b/build/screen.js index f32432f..c6e96be 100644 --- a/build/screen.js +++ b/build/screen.js @@ -16,7 +16,7 @@ setInterval(() => { if (tagCount > tag.length) { tagCount = 0; } -}, 500); +}, 300); const getStanza = async () => { const stanzaCount = await prisma.stanza.count(); const skip = Math.floor(Math.random() * stanzaCount); @@ -44,9 +44,9 @@ while (true) { stanza = await getStanza(); characterLocation = 0; } - }, 700); + }, 500); } - await timer((16 + stanza.length) * 750); + await timer((16 + stanza.length) * 550); clearInterval(outerInterval); clearInterval(innerInterval); } diff --git a/screen.ts b/screen.ts index 1793a3c..1a9edae 100644 --- a/screen.ts +++ b/screen.ts @@ -22,7 +22,7 @@ setInterval(() => { if (tagCount > tag.length) { tagCount = 0; } -}, 500); +}, 300); const getStanza = async () => { const stanzaCount = await prisma.stanza.count(); @@ -61,9 +61,9 @@ while (true) { stanza = await getStanza(); characterLocation = 0; } - }, 700); + }, 500); } - await timer((16 + stanza.length) * 750); + await timer((16 + stanza.length) * 550); clearInterval(outerInterval); clearInterval(innerInterval); }