From 41a43bed2a4acaaeee7626c8149df1132426b34d Mon Sep 17 00:00:00 2001 From: JustAGenericUsername <92590792+JustAGenericUsername@users.noreply.github.com> Date: Tue, 31 Dec 2024 12:02:31 -0500 Subject: [PATCH] oopsies --- mods/fractals.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/fractals.js b/mods/fractals.js index b2b7279f..eec2964f 100644 --- a/mods/fractals.js +++ b/mods/fractals.js @@ -89,7 +89,7 @@ elements.mandelbrot = { } } */ - iteration = gridWeightedAverage(pixel.x, pixel.y) + iteration = preCalculatedGrid[pixel.x][pixel.y].iteration if (iteration >= 99.5) { pixel.color = "rgb(255, 255, 255)" } else {