diff --git a/mods/chem.js b/mods/chem.js index 9378aa16..aabc4c21 100644 --- a/mods/chem.js +++ b/mods/chem.js @@ -1038,7 +1038,6 @@ function doStaining(pixel) { avg[j] = Math.floor((rgb[j]*(1-Math.abs(stain))) + (newColor[j]*Math.abs(stain))); } } - console.log(avg); // set newPixel color to avg newPixel.color = "rgb("+avg.join(",")+")"; }