From aeccba01009683f73b8e9ee77df6f1838e54930d Mon Sep 17 00:00:00 2001 From: Buduf Date: Sun, 3 Jul 2022 12:54:26 +0200 Subject: [PATCH] bures-monitor fix --- bures-monitor.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bures-monitor.lua b/bures-monitor.lua index 90a9bb6..5890698 100644 --- a/bures-monitor.lua +++ b/bures-monitor.lua @@ -28,7 +28,11 @@ end local function printBuRes() for name, list in pairs(buRes) do print(name, "asd") - term.blit(name, colors.toBlit(colors.black), colors.toBlit(colors.white)) + term.setTextColor(colors.black) + term.setBackgroundColor(colors.white) + print(name) + term.setTextColor(colors.white) + term.setBackgroundColor(colors.black) for key, value in pairs(list) do print(value.item.displayName, value.available .. "+" .. value.delivering .. "/" .. value.item.count) end