From a33913aa4110be52211185152d796126d37fecc5 Mon Sep 17 00:00:00 2001 From: ASTROWwwW Date: Thu, 16 Jul 2026 14:51:53 +0200 Subject: [PATCH] fix(esx_lib): stop the table module from overwriting the stdlib --- [core]/esx_lib/imports/table/shared.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/[core]/esx_lib/imports/table/shared.lua b/[core]/esx_lib/imports/table/shared.lua index ed49db65..1a590f34 100644 --- a/[core]/esx_lib/imports/table/shared.lua +++ b/[core]/esx_lib/imports/table/shared.lua @@ -1,5 +1,5 @@ ----@class tablelib -xLib.table = table +---@class xtable : tablelib +xLib.table = setmetatable({}, { __index = table }) ---@param tbl table ---@return boolean