mod hotfix

This commit is contained in:
slweeb 2026-01-11 14:09:24 -05:00
parent a2a3731cdd
commit 9a28cbfd8e
1 changed files with 2 additions and 2 deletions

View File

@ -61,9 +61,9 @@ renderEachPixel(function(pixel,ctx) {
}
}
if (elements[pixel.element].glow || elements[pixel.element].isGas){
drawPlus(ctx,"rgba(" + color.r + ", " + color.g + ", " + color.b + ", " + opacity +")",pixel.x,pixel.y)
drawPlus(ctx,"rgb(" + color.r + ", " + color.g + ", " + color.b +")",pixel.x,pixel.y,undefined,opacity)
} else {
drawSquare(ctx,"rgba(" + color.r + ", " + color.g + ", " + color.b + ", " + opacity +")",pixel.x,pixel.y)
drawSquare(ctx,"rgb(" + color.r + ", " + color.g + ", " + color.b +")",pixel.x,pixel.y,undefined,opacity)
}}
})
keybinds["KeyH"] = function(){