From 664741504f30a5182b7de13d64303ad5664d73e1 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Thu, 26 Mar 2026 14:27:31 -0400 Subject: [PATCH] feat: update billboard monitor text scale configuration to use BILLBOARD_TEXT_SCALE --- manager/display.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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