From efb171ca23e9fd03bb7b8702097fb62315d70f11 Mon Sep 17 00:00:00 2001 From: fohristiwhirl Date: Sun, 7 Oct 2018 17:37:32 +0100 Subject: [PATCH] notes --- fluorine_renderer.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/fluorine_renderer.html b/fluorine_renderer.html index 8fe182e..81c35e6 100644 --- a/fluorine_renderer.html +++ b/fluorine_renderer.html @@ -1680,15 +1680,14 @@ lines.push(`
  • Profit = ${current}
  • `); } - if (mined + absorbed - carrying - burned - deposited - scrapped !== 0) { + if (mined + absorbed - deposited - carrying - burned - scrapped !== 0) { lines.push(`
  • Discrepancy: ${mined + absorbed - carrying - burned - deposited - scrapped}
  • `); } lines.push(``); - // Note to self - the discrepancy from halite absorbed during - // dropoff construction IS included in the deposited stat. - // But initial 5000 is not. + // Note to self - halite absorbed during dropoff construction IS included in the deposited stat. + // But initial 5000 is not. (My "gathered" stat is deposited + initial.) } infobox.innerHTML = lines.join("");