Skip to content

Commit 59403d7

Browse files
committed
Fixed WSP was still simmed at e600 tau even if settings for simming completed CTs was set to "no"
1 parent e57bdf3 commit 59403d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Sim/parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ function parseSimAll(): SimAllQuery {
155155

156156
values = values.map((val, i) => {
157157
const theory = getTheoryFromIndex(i);
158-
if (settings.completedCTs === "no" && i > 8 && val * jsonData.theories[theory].tauFactor >= 600) return 0;
158+
if (settings.completedCTs === "no" && i >= 8 && val * jsonData.theories[theory].tauFactor >= 600) return 0;
159159
if (!settings.showUnofficials && (jsonData.theories as TheoryDataStructure)[theory].UI_visible === false) return 0;
160160
return val;
161161
})

0 commit comments

Comments
 (0)