We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d23a6e commit 01d6667Copy full SHA for 01d6667
1 file changed
KTL/views/viewUpdating.js
@@ -40,7 +40,7 @@ let views = {
40
views.updateVal(`highestLegacyContainer`, data.highestLegacy > 0 ? "" : "none", "style.display");
41
views.updateVal(`highestLegacy`, data.highestLegacy, "textContent", 2);
42
views.updateVal(`secondsPassed`, data.currentGameState.secondsPassed, "textContent", "time");
43
- views.updateVal(`secondsThisGRContainer`, data.genesisResets > 0 ? "" : "none", "style.display");
+ views.updateVal(`secondsThisGRContainer`, data.currentGameState.secondsThisGR > 0 ? "" : "none", "style.display");
44
views.updateVal(`secondsThisGR`, data.currentGameState.secondsThisGR, "textContent", "time");
45
views.updateVal(`secondsThisLSContainer`, (data.lichKills > 0 || data.genesisResets > 0) ? "" : "none", "style.display");
46
views.updateVal(`secondsThisLS`, data.currentGameState.secondsThisLS, "textContent", "time");
0 commit comments