diff --git a/manager/display.lua b/manager/display.lua index 0a5e90c..4dbe54c 100644 --- a/manager/display.lua +++ b/manager/display.lua @@ -164,12 +164,13 @@ end function D.setupBillboardMonitor() -- If explicitly configured, use that name + local scale = cfg.BILLBOARD_TEXT_SCALE or 1 if cfg.BILLBOARD_MONITOR and cfg.BILLBOARD_MONITOR ~= "" then local mon = peripheral.wrap(cfg.BILLBOARD_MONITOR) if mon and mon.setTextScale then D.billboardMon = mon D.billboardMonName = cfg.BILLBOARD_MONITOR - D.billboardMon.setTextScale(0.5) + D.billboardMon.setTextScale(scale) return true end return false @@ -183,7 +184,7 @@ function D.setupBillboardMonitor() if mon and mon.setTextScale then D.billboardMon = mon D.billboardMonName = name - D.billboardMon.setTextScale(0.5) + D.billboardMon.setTextScale(scale) return true end end