Fix minetest.get_craft_recipe function

Previously, calling it resulted in a crash.
This commit is contained in:
est31 2015-03-23 02:38:53 +01:00 committed by Craig Robbins
parent 0ae75f2a4e
commit 5b5c498011
1 changed files with 2 additions and 0 deletions

View File

@ -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");