Commented out debug console.logs

This commit is contained in:
lllllllllwith10ls 2024-05-28 15:18:26 -05:00
parent 56fe2963b5
commit 43bc564c00
1 changed files with 2 additions and 3 deletions

View File

@ -91,7 +91,6 @@ function addElement(list, elem) {
return result; return result;
} }
if(elem && !list.includes(elem)) { if(elem && !list.includes(elem)) {
if(elem === "CR") {console.log(elem)};
list.push(elem); list.push(elem);
return true; return true;
} }
@ -308,7 +307,7 @@ window.addEventListener("load",function(){
} }
}) })
runAfterAutogen(function(){ /*runAfterAutogen(function(){
let reachable = findReachable(initialElements); let reachable = findReachable(initialElements);
console.log(reachable.join(",")); console.log(reachable.join(","));
let string = ""; let string = "";
@ -359,7 +358,7 @@ window.addEventListener("load",function(){
} }
} }
console.log(string); console.log(string);
}); });*/
} }
if(chemMod) { if(chemMod) {
chemMod.addEventListener("load",loadAlchem); chemMod.addEventListener("load",loadAlchem);