diff --git a/experiment/SelfAssociation/SelfAssociation.js b/experiment/SelfAssociation/SelfAssociation.js index 0c64178..7ef7795 100644 --- a/experiment/SelfAssociation/SelfAssociation.js +++ b/experiment/SelfAssociation/SelfAssociation.js @@ -455,13 +455,13 @@ var sat_practice_trial = { var n_consecutive = jsPsych.data .get() .filter({ screen: "sat_practicetrial" }) - .last(21) + .last(19) .values() .map((x) => x["correct"]) .reduce((a, b) => a + b) // Autoend training if more than 6 continuous responses - if (n_consecutive > 20){ + if (n_consecutive > 18){ jsPsych.endCurrentTimeline() } },