Merge branch 'fix-taglist-methods' into 'next'

Fix Lua taglists methods not working

See merge request STJr/SRB2!2244
This commit is contained in:
Logan Aerl Arias 2023-12-28 14:55:49 +00:00
commit 911b462212

View file

@ -228,7 +228,7 @@ static int taglist_get(lua_State *L)
}
else
{
lua_getmetatable(L, 1);
lua_getglobal(L, "taglist");
lua_replace(L, 1);
lua_rawget(L, 1);
return 1;