removing high numbers so that the heatmap is not influenced by them

This commit is contained in:
Jack 2021-12-06 14:30:22 +00:00
parent e817b86b28
commit 700c0aff49

View file

@ -854,6 +854,9 @@ export function applyBurstHeatmap() {
let burstlist = [...TestStats.burstHistory];
burstlist = burstlist.filter((x) => x !== Infinity);
burstlist = burstlist.filter((x) => x < 350);
if (
TestLogic.input.getHistory(TestLogic.input.getHistory().length - 1)
.length !== TestLogic.words.getCurrent().length