"Fix" the Lynx TWS of Southpole by extending the "out of input" threshold a bit
This commit is contained in:
parent
e8cb95a60b
commit
db02c19a0d
@ -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;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user