Merge pull request #549 from DanielNoord/todos

Fixed number of TODOs
This commit is contained in:
DanielNoord
2021-01-31 21:43:20 +01:00
committed by GitHub
6 changed files with 11 additions and 23 deletions

View File

@@ -2757,7 +2757,7 @@ CM.Disp.CreateStatsPrestigeSection = function() {
var cookiesNextFrag = document.createDocumentFragment();
cookiesNextFrag.appendChild(document.createTextNode(Beautify(neededCook)));
var cookiesNextSmall = document.createElement('small');
cookiesNextSmall.textContent = ' (' + (CM.Disp.FormatTime(neededCook / CM.Cache.AvgCPSChoEgg, 1)) + ')';
cookiesNextSmall.textContent = ' (' + (CM.Disp.FormatTime(neededCook / CM.Cache.AvgCPSWithChoEgg, 1)) + ')';
cookiesNextFrag.appendChild(cookiesNextSmall);
section.appendChild(CM.Disp.CreateStatsListing("withTooltip", 'Cookies To Next Level', cookiesNextFrag, 'NextPrestTooltipPlaceholder'));