"Fix" the Lynx TWS of Southpole by extending the "out of input" threshold a bit

This commit is contained in:
Eevee (Evelyn Woods) 2021-05-11 18:16:34 -06:00
parent e8cb95a60b
commit db02c19a0d
2 changed files with 6 additions and 2 deletions

View File

@ -207,7 +207,9 @@ async function test_pack(pack, ruleset, level_filter = null) {
record_result('failure', "Lost", true);
break;
}
else if (level.tic_counter >= replay.duration + 200) {
else if (level.tic_counter >= replay.duration + 220) {
// This threshold of 11 seconds was scientifically calculated by noticing that
// the TWS of Southpole runs 11 seconds past its last input
record_result('short', "Out of input", true);
break;
}

View File

@ -3303,7 +3303,9 @@ class PackTestDialog extends DialogOverlay {
record_result('failure', "Lost", true);
break;
}
else if (level.tic_counter >= replay.duration + 200) {
else if (level.tic_counter >= replay.duration + 220) {
// This threshold of 11 seconds was scientifically calculated by noticing
// that the TWS of Southpole runs 11 seconds past its last input
record_result('short', "Out of input", true);
break;
}