Fix minetest.get_craft_recipe function
Previously, calling it resulted in a crash.mutilcraft-mt53
parent
0ae75f2a4e
commit
5b5c498011
|
@ -393,6 +393,8 @@ int ModApiCraft::l_get_craft_recipe(lua_State *L)
|
|||
std::vector<CraftDefinition*> recipes = server->cdef()
|
||||
->getCraftRecipes(output, server, 1);
|
||||
|
||||
lua_createtable(L, 1, 0);
|
||||
|
||||
if (recipes.empty()) {
|
||||
lua_pushnil(L);
|
||||
lua_setfield(L, -2, "items");
|
||||
|
|
Loading…
Reference in New Issue