From af040852a60aece98b9fd49a3dc9655e8ea36ff7 Mon Sep 17 00:00:00 2001 From: andrew6180 <16847730+andrew6180@users.noreply.github.com> Date: Fri, 2 Jan 2026 12:46:50 -0700 Subject: [PATCH] fix but this shouldnt ever happen without someone breaking their ldb pretty sure --- functions/timedata.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/functions/timedata.lua b/functions/timedata.lua index ac041871..574e7f48 100644 --- a/functions/timedata.lua +++ b/functions/timedata.lua @@ -535,7 +535,9 @@ end function Details:BrokerTick() - Details.databroker.text = parse_broker_text() + if Details.databroker then + Details.databroker.text = parse_broker_text() + end end function Details:SetDataBrokerText (text)