From 6367c9ed3b3911d26b4dd37db13e229643497b2e Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Tue, 30 Jan 2024 18:47:23 +0000 Subject: [PATCH] remove loadmodel debug timeout print --- functions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.lua b/functions.lua index 977cb90..bf6ba62 100644 --- a/functions.lua +++ b/functions.lua @@ -14,7 +14,7 @@ function loadModel(model) else if not HasModelLoaded(model) then if Config.System.Debug then print("^6Bridge^7: ^2Loading Model^7: '^6"..model.."^7'") end - while not HasModelLoaded(model) and time > 0 do time -= 1 RequestModel(model) print(time) Wait(0) end + while not HasModelLoaded(model) and time > 0 do time -= 1 RequestModel(model) Wait(0) end if not HasModelLoaded(model) then time = 500 print("^6Bridge^7: ^3LoadModel^7: ^2Timed out loading model ^7'^6"..model.."^7'") end end end