точно такая же проблема
кал:
-- Temporary hack
local meta = {}
function meta.__index(self, key)
return FindMetaTable(key)
end
local metas = {}
function meta.__newindex(self, key, value)
metas[ key ] = value
end
debug.getregistry = function()
local tbl = {}
setmetatable(tbl, meta)
return tbl
end
local oldFindMetaTable = FindMetaTable
FindMetaTable = function( name )
local f = oldFindMetaTable( name )
if ( f ) then return f end
return metas[ name ]
end
фикс, вставить в addons/plib_v2/includes/_init.lua в самый вверх файла
если такого нету, то в lua/includes/init.lua
Последнее редактирование: