From 58e48df5142f2e7b430f849a1d832ce10653f77a Mon Sep 17 00:00:00 2001 From: Benzo <102178921+Benzo00@users.noreply.github.com> Date: Mon, 9 Jan 2023 11:25:42 +0100 Subject: [PATCH] Revert "Only show Default Inventory if Config enabled." This reverts commit 1abd1fb5b451fd8239adba584414329ccc761ff2. --- [esx]/es_extended/client/main.lua | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/[esx]/es_extended/client/main.lua b/[esx]/es_extended/client/main.lua index 1ce5d165..a10df217 100644 --- a/[esx]/es_extended/client/main.lua +++ b/[esx]/es_extended/client/main.lua @@ -250,9 +250,7 @@ if not Config.OxInventory then ESX.UI.ShowInventoryItemNotification(true, item, count) end - if Config.EnableDefaultInventory then - ESX.ShowInventory() - end + ESX.ShowInventory() end) RegisterNetEvent('esx:removeInventoryItem') @@ -269,9 +267,7 @@ if not Config.OxInventory then ESX.UI.ShowInventoryItemNotification(false, item, count) end - if Config.EnableDefaultInventory then - ESX.ShowInventory() - end + ESX.ShowInventory() end) RegisterNetEvent('esx:addWeapon')