fixed rendering in newdesign.

This commit is contained in:
Justus Wolff
2026-02-15 18:29:12 +01:00
parent 34e8555767
commit 3a89a64aca

View File

@@ -96,7 +96,7 @@ local function newdesign()
term.blit(" ", colors.toBlit(colors.white), colors.toBlit(colors.white)) term.blit(" ", colors.toBlit(colors.white), colors.toBlit(colors.white))
elseif currentbuf == 2 then -- no ceiling elseif currentbuf == 2 then -- no ceiling
term.blit(" ", colors.toBlit(colors.red), colors.toBlit(colors.red)) term.blit(" ", colors.toBlit(colors.red), colors.toBlit(colors.red))
elseif currentbuf == 0 then -- nothing elseif currentbuf == 0 or currentbuf == nil then -- nothing
term.blit("\127", colors.toBlit(colors.gray), colors.toBlit(colors.black)) term.blit("\127", colors.toBlit(colors.gray), colors.toBlit(colors.black))
end end
end end