We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e57bdf3 commit 59403d7Copy full SHA for 59403d7
1 file changed
src/Sim/parse.ts
@@ -155,7 +155,7 @@ function parseSimAll(): SimAllQuery {
155
156
values = values.map((val, i) => {
157
const theory = getTheoryFromIndex(i);
158
- if (settings.completedCTs === "no" && i > 8 && val * jsonData.theories[theory].tauFactor >= 600) return 0;
+ if (settings.completedCTs === "no" && i >= 8 && val * jsonData.theories[theory].tauFactor >= 600) return 0;
159
if (!settings.showUnofficials && (jsonData.theories as TheoryDataStructure)[theory].UI_visible === false) return 0;
160
return val;
161
})
0 commit comments