From 3ea6a845c77f633498ebfec57b8597d7855e58b1 Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Tue, 23 Dec 2014 20:32:50 -0800 Subject: [PATCH] Fix bug where tools status was not in recalculate --- src/scripts/controllers/crafting_table_controller.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/controllers/crafting_table_controller.coffee b/src/scripts/controllers/crafting_table_controller.coffee index da74f8ac4..9e05fa0fd 100644 --- a/src/scripts/controllers/crafting_table_controller.coffee +++ b/src/scripts/controllers/crafting_table_controller.coffee @@ -73,4 +73,4 @@ module.exports = class CraftingTableController extends BaseController _recalculate: -> return if not @_name? or @_name.length is 0 - @model.craft @_name, @_quantity + @model.craft @_name, @_quantity, @_includingTools