From 87fe8980ac742437d3b588e8ca4767e677e3df31 Mon Sep 17 00:00:00 2001 From: Justus Wolff Date: Sun, 15 Feb 2026 11:04:20 +0100 Subject: [PATCH] and change background color to black on background pattern --- src/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.lua b/src/main.lua index adf9f18..bcd17cc 100644 --- a/src/main.lua +++ b/src/main.lua @@ -86,7 +86,7 @@ local function newdesign() term.blit(" ", colors.toBlit(colors.white), colors.toBlit(colors.white)) else term.setCursorPos(x, z) - term.blit("\127", colors.toBlit(colors.gray), colors.toBlit(colors.white)) + term.blit("\127", colors.toBlit(colors.gray), colors.toBlit(colors.black)) end end end