From 48cf1d56be977d6b78f0e75b893d73b4eb72dee3 Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Sun, 4 Aug 2019 17:54:46 +0200 Subject: [PATCH] removed old ESX.TableContainsValue --- common/functions.lua | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/common/functions.lua b/common/functions.lua index 755ae468..ed9deb82 100644 --- a/common/functions.lua +++ b/common/functions.lua @@ -59,16 +59,6 @@ ESX.GetWeaponComponent = function(weaponName, weaponComponent) end end -ESX.TableContainsValue = function(table, value) - for k, v in pairs(table) do - if v == value then - return true - end - end - - return false -end - ESX.DumpTable = function(table, nb) if nb == nil then nb = 0