From 87cdd5502e330b13fad6b09b8aa93369e13535a8 Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Tue, 10 Jun 2025 21:47:12 +0100 Subject: [PATCH] Change QBInvNew export because i forgor I forgot that it needed to check the client side too for the change, but I set it to check for a server only export got lucky and realised `HasItem` is an export on both client and server --- starter.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/starter.lua b/starter.lua index de2d95c..107a00e 100644 --- a/starter.lua +++ b/starter.lua @@ -191,14 +191,14 @@ for _, v in pairs({ -- This is a specific load order end if isStarted(QBInv) then - if not checkExportExists(QBInv, "CreateShop") then + if not checkExportExists(QBInv, "HasItem") then print("^6Bridge^7: ^2Can^7'^2t ^2find new QBInv export^7, ^2forcing ^1QBInvNew ^2to ^1false^7") QBInvNew = false end end if isStarted(PSInv) then - if not checkExportExists(PSInv, "CreateShop") then + if not checkExportExists(PSInv, "HasItem") then print("^6Bridge^7: ^2Can^7't ^2find new PSInv export^7, ^2forcing ^1QBInvNew ^2to ^1false^7") QBInvNew = false end