Merge pull request #83 from FozLand/issue_82

Fix bug in usages. Closes #82
This commit is contained in:
Vanessa Ezekowitz 2016-11-27 13:37:29 -05:00 committed by GitHub
commit 4a22f8e4da
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ minetest.after(0.01, function()
for _, recipes in pairs(unified_inventory.crafts_for.recipe) do
for _, recipe in ipairs(recipes) do
local ingredient_items = {}
for _, spec in ipairs(recipe.items) do
for _, spec in pairs(recipe.items) do
local matches_spec = unified_inventory.canonical_item_spec_matcher(spec)
for _, name in ipairs(unified_inventory.items_list) do
if matches_spec(name) then