This commit is contained in:
Lily-129 2022-02-11 20:06:47 -05:00 committed by GitHub
parent 749ee1dcaa
commit 08dd283645
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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",