From fc43cdb116177475c74d21533f49b83e1b56c7cc Mon Sep 17 00:00:00 2001 From: Kasey FItton Date: Fri, 8 Nov 2024 04:56:12 +0000 Subject: [PATCH] tweak(es_extended/config): disable default inventory if custom one is enabled --- [core]/es_extended/config.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/[core]/es_extended/config.lua b/[core]/es_extended/config.lua index a1a69c36..138e298f 100644 --- a/[core]/es_extended/config.lua +++ b/[core]/es_extended/config.lua @@ -44,7 +44,6 @@ Config.EnableSocietyPayouts = false -- pay from the society account that the pla Config.MaxWeight = 24 -- the max inventory weight without a backpack Config.PaycheckInterval = 7 * 60000 -- how often to receive paychecks in milliseconds Config.EnableDebug = false -- Use Debug options? -Config.EnableDefaultInventory = true -- Display the default Inventory ( F2 ) Config.EnableWantedLevel = false -- Use Normal GTA wanted Level? Config.EnablePVP = true -- Allow Player to player combat Config.DefaultJobDuty = true -- A players default duty status when changing jobs @@ -99,3 +98,6 @@ Config.CustomAIPlates = "........" -- Custom plates for AI vehicles --^A will lead to a literal A being emitted. --Any other character will lead to said character being emitted. -- A string shorter than 8 characters will be padded on the right. + +-- Do NOT change the following unless you know what you are doing +Config.EnableDefaultInventory = not Config.CustomInventory -- Display the default Inventory ( F2 )