From 43bc564c0068ffeccfb3cbeb42b4a5f1b3d410a6 Mon Sep 17 00:00:00 2001 From: lllllllllwith10ls Date: Tue, 28 May 2024 15:18:26 -0500 Subject: [PATCH] Commented out debug console.logs --- mods/alchem.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mods/alchem.js b/mods/alchem.js index 169a9aab..b6e2e8b9 100644 --- a/mods/alchem.js +++ b/mods/alchem.js @@ -91,7 +91,6 @@ function addElement(list, elem) { return result; } if(elem && !list.includes(elem)) { - if(elem === "CR") {console.log(elem)}; list.push(elem); return true; } @@ -308,7 +307,7 @@ window.addEventListener("load",function(){ } }) - runAfterAutogen(function(){ + /*runAfterAutogen(function(){ let reachable = findReachable(initialElements); console.log(reachable.join(",")); let string = ""; @@ -359,7 +358,7 @@ window.addEventListener("load",function(){ } } console.log(string); - }); + });*/ } if(chemMod) { chemMod.addEventListener("load",loadAlchem);