From 08dd283645f9802d3cc509f6ab21cfd662403890 Mon Sep 17 00:00:00 2001 From: Lily-129 <68935009+Lily-129@users.noreply.github.com> Date: Fri, 11 Feb 2022 20:06:47 -0500 Subject: [PATCH] buffed --- mods/evenmoretemptools.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/evenmoretemptools.js b/mods/evenmoretemptools.js index 355b44c3..70f50b84 100644 --- a/mods/evenmoretemptools.js +++ b/mods/evenmoretemptools.js @@ -10,7 +10,7 @@ elements.warm = { elements.ultraheat = { color: ["#ff0000", "#ffbf4f", "#ff0000", "#ffbf4f", "#ff0000", "#ffbf4f"], tool: function(pixel) { - if(shiftDown) { pixel.temp += (250 * (1 + shiftDown)) } else { pixel.temp += 250 } + if(shiftDown) { pixel.temp += (350 * (1 + shiftDown)) } else { pixel.temp += 350 } pixelTempCheck(pixel) }, category: "tools", @@ -18,7 +18,7 @@ elements.ultraheat = { elements.ultracool = { color: ["#0000ff", "#4fbfff", "#0000ff", "#4fbfff", "#0000ff", "#4fbfff"], tool: function(pixel) { - if(shiftDown) { pixel.temp -= (250 * (1 + shiftDown)) } else { pixel.temp -= 250 } + if(shiftDown) { pixel.temp -= (350 * (1 + shiftDown)) } else { pixel.temp -= 350 } pixelTempCheck(pixel) }, category: "tools",