Fix bug with recipe books table

This commit is contained in:
Andrew Miner
2014-12-29 09:07:39 -08:00
parent 372a1e0063
commit 004320d052
9 changed files with 61 additions and 23 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ module.exports = class CraftingPlan
targetItem = @_pending.pop()
return unless targetItem?
recipes = @catalog.findRecipes targetItem.name
recipes = @catalog.gatherRecipes targetItem.name
return if not recipes.length > 0
recipe = recipes[0]