From e730b015453c7777f77147f0c6e050a399e0c574 Mon Sep 17 00:00:00 2001 From: TRClassic <82931913+trclassic92@users.noreply.github.com> Date: Tue, 29 Mar 2022 00:13:51 -0400 Subject: [PATCH 1/2] Loading issue wasn't loading the shared files in order --- fxmanifest.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/fxmanifest.lua b/fxmanifest.lua index 8cfc69d..a38fc67 100644 --- a/fxmanifest.lua +++ b/fxmanifest.lua @@ -5,9 +5,15 @@ description 'QB-Core' version '1.1.0' shared_scripts { - 'shared/*.lua', 'config.lua', - 'locale/en.lua' -- replace with desired language + 'locale/en.lua', -- replace with desired language + 'shared/main.lua', + 'shared/items.lua', + 'shared/jobs.lua', + 'shared/vehicles.lua', + 'shared/gangs.lua', + 'shared/weapons.lua' +} } client_scripts { From 814adb0a23b9c8375123ee8e1f365d3b053eb5ed Mon Sep 17 00:00:00 2001 From: TRClassic <82931913+trclassic92@users.noreply.github.com> Date: Tue, 29 Mar 2022 00:15:25 -0400 Subject: [PATCH 2/2] Update fxmanifest.lua --- fxmanifest.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/fxmanifest.lua b/fxmanifest.lua index a38fc67..12983b2 100644 --- a/fxmanifest.lua +++ b/fxmanifest.lua @@ -14,7 +14,6 @@ shared_scripts { 'shared/gangs.lua', 'shared/weapons.lua' } -} client_scripts { 'client/main.lua',