From: darkrose Date: Sun, 15 Jul 2012 06:50:42 +0000 (+1000) Subject: Check for table type when reading groups from Lua X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=369046bbb45a05625919d07691986b06f7564d31;p=zefram%2Fminetest%2Fminetest_engine.git Check for table type when reading groups from Lua --- diff --git a/src/scriptapi.cpp b/src/scriptapi.cpp index 4b3fbe29..39e89ddb 100644 --- a/src/scriptapi.cpp +++ b/src/scriptapi.cpp @@ -686,6 +686,8 @@ static NodeBox read_nodebox(lua_State *L, int index) static void read_groups(lua_State *L, int index, std::map &result) { + if (!lua_istable(L,index)) + return; result.clear(); lua_pushnil(L); if(index < 0)