From 28f07575d7a24a257cf2c9e581a73edd62f8ac43 Mon Sep 17 00:00:00 2001 From: Kasey FItton Date: Fri, 8 Nov 2024 06:40:24 +0000 Subject: [PATCH] fix(es_extended/config): more specific with DefaultInventory check --- [core]/es_extended/shared/config/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[core]/es_extended/shared/config/main.lua b/[core]/es_extended/shared/config/main.lua index 31de8b5a..3a74610c 100644 --- a/[core]/es_extended/shared/config/main.lua +++ b/[core]/es_extended/shared/config/main.lua @@ -55,7 +55,7 @@ Config.DistanceGive = 4.0 -- Max distance when giving items, weapons etc. Config.AdminLogging = false -- Logs the usage of certain commands by those with group.admin ace permissions (default is false) -- Do NOT change the following unless you know what you are doing -Config.EnableDefaultInventory = not Config.CustomInventory -- Display the default Inventory ( F2 ) +Config.EnableDefaultInventory = Config.CustomInventory == false -- Display the default Inventory ( F2 ) if GetResourceState("ox_inventory") ~= "missing" then Config.CustomInventory = "ox" end