From 165053097161e67de3d8f10adce0ddeacc4e0bfb Mon Sep 17 00:00:00 2001 From: guzzo86 <126430018+guzzo86@users.noreply.github.com> Date: Tue, 30 Apr 2024 18:28:17 -0400 Subject: [PATCH] Update potato_chips.js --- mods/potato_chips.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/potato_chips.js b/mods/potato_chips.js index 816ad59b..c1beeb75 100644 --- a/mods/potato_chips.js +++ b/mods/potato_chips.js @@ -7,7 +7,7 @@ elements.potato_chip = { desc: "Potato chip. Turns potato next to it into potato chip if temp is >= 104 - 180.", tick: function(pixel) { - if(pixelTicks - pixel.start >= 15) { + if(pixelTicks - pixel.start >= 10) { if (!isEmpty(pixel.x, pixel.y - 1, true)) { if (pixel.temp >= 104 && pixelMap[pixel.x][pixel.y - 1].element === "potato") { changePixel(pixelMap[pixel.x][pixel.y - 1], "potato_chip");