From 3f093ce9342b9e477c247e9c1b0b80c80f590f12 Mon Sep 17 00:00:00 2001 From: Jim Shield Date: Tue, 29 Apr 2025 17:43:37 +0100 Subject: [PATCH] fix QS-Inv registerStash function --- shared/wrapperfunctions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/wrapperfunctions.lua b/shared/wrapperfunctions.lua index 09f4c2c..50f4ed9 100644 --- a/shared/wrapperfunctions.lua +++ b/shared/wrapperfunctions.lua @@ -61,7 +61,7 @@ function registerStash(name, label, slots, weight, owner, coords) exports[OXInv]:RegisterStash(name, label, slots or 50, weight or 4000000, owner or nil) elseif isStarted(QSInv) then debugPrint("^6Bridge^7: ^2Registering ^3QS ^2Stash^7:", name, label) - exports[QSInv]:RegisterStash(nil, name, slots or 50, weight or 4000000) + exports[QSInv]:RegisterStash(name, label, slots or 50, weight or 4000000) --elseif isStarted(CoreInv) then -- debugPrint("^6Bridge^7: ^2Registering ^3CoreInv ^2Stash^7:", name, label)