From f123617c3343d9fee94e0f92d9fc8beec18fc6d6 Mon Sep 17 00:00:00 2001 From: marcin grzebieluch Date: Tue, 25 Jun 2024 10:20:51 +0200 Subject: [PATCH] impr(practice): shuffle words when practicing missed/slow words (grzebiel) (#5519) * impr(practice): random shuffle words in all practice modes * change self made shuffle into CustomText.setMode("shuffle") --- frontend/src/ts/test/practise-words.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/ts/test/practise-words.ts b/frontend/src/ts/test/practise-words.ts index c0bbef916..6d755ff95 100644 --- a/frontend/src/ts/test/practise-words.ts +++ b/frontend/src/ts/test/practise-words.ts @@ -107,6 +107,7 @@ export function init(missed: boolean, slow: boolean): boolean { CustomText.setLimitValue( (sortableSlowWords.length + sortableMissedWords.length) * 5 ); + CustomText.setMode("shuffle"); setCustomTextName("practise", undefined);