This commit is contained in:
JustAGenericUsername 2025-02-16 18:18:21 -05:00
parent 85954c8202
commit 520b206129
1 changed files with 1 additions and 1 deletions

View File

@ -3921,7 +3921,7 @@ elements.sign = {
renderPostPixel(function(ctx){
for (pixel of currentPixels){
if (pixel.element == "sign" && pixel.sign){
ctx.font = `12pt PressStart2P`
ctx.font = `12pt Arial`
ctx.fillStyle = pixel.color;
ctx.fillText(pixel.sign, canvasCoord(pixel.x), canvasCoord(pixel.y))
}