mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
Add missing type check to InvRef:set_lists() (#10476)
This commit is contained in:
@ -280,6 +280,7 @@ int InvRef::l_set_lists(lua_State *L)
|
||||
Server *server = getServer(L);
|
||||
|
||||
lua_pushnil(L);
|
||||
luaL_checktype(L, 2, LUA_TTABLE);
|
||||
while (lua_next(L, 2)) {
|
||||
const char *listname = lua_tostring(L, -2);
|
||||
read_inventory_list(L, -1, tempInv, listname, server);
|
||||
|
Reference in New Issue
Block a user