From 7997ea45b7539b6976a79ac910dbc8021e46e517 Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Sat, 17 May 2025 19:16:24 +0100 Subject: [PATCH] change "Shared Load Detected" to a `debugPrint` --- shared/_loaders.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/_loaders.lua b/shared/_loaders.lua index 9c2c92e..3112745 100644 --- a/shared/_loaders.lua +++ b/shared/_loaders.lua @@ -110,7 +110,7 @@ function onResourceStart(func, thisScript) AddEventHandler('onResourceStart', function(resourceName) if getScript() == resourceName and (thisScript or true) then if waitForSharedLoad() then - print("^6Bridge^7: ^2Shared Load Detected^7.") + debugPrint("^6Bridge^7: ^2Shared Load Detected^7.") if isStarted(ESXExport) then Wait(10000) end func() end