From 6cca7d939f56d06cb6f85804b7dc9cf47ffdfd88 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Fri, 7 Mar 2025 06:32:19 -0500 Subject: [PATCH] fix in the other places oto --- docs/js/idle.js | 2 +- docs/js/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/js/idle.js b/docs/js/idle.js index defa007..5004838 100644 --- a/docs/js/idle.js +++ b/docs/js/idle.js @@ -44,7 +44,7 @@ setInterval(function () { for (let ab in cubePos) { let a = cubePos[ab]; - let bonus = 1 + counts.doNothing / (ab + 2); + let bonus = 1 + counts.doNothing / (ab * 1 + 2); bonus = (bonus) ** 0.05; let f = (nGain + getBonus * bonus * 10000 + 10) / (nothingness + 10); diff --git a/docs/js/index.js b/docs/js/index.js index 6140b77..7af3200 100644 --- a/docs/js/index.js +++ b/docs/js/index.js @@ -139,7 +139,7 @@ function renderThing() { let cubie = cubePos[ii]; let vp = MDN.rotateYMatrix(Math.log(nothingness + 1) * cubie[2] / 10); - let bonus = 1 + counts.doNothing / (ii + 2); + let bonus = 1 + counts.doNothing / (ii * 1+ 2); bonus = bonus ** (1 / 2); vp = MDN.multiplyMatrices(MDN.scaleMatrix(sizes * bonus, sizes * bonus, sizes * bonus), vp)