From 2e72b1884dd1e8d538f3de610c1aac37492ce0dc Mon Sep 17 00:00:00 2001 From: kepler155c Date: Sun, 11 Mar 2018 17:33:30 -0400 Subject: [PATCH] 1.7.10 compatibility --- apps/chestManager.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/chestManager.lua b/apps/chestManager.lua index 0bb1d07..03347ee 100644 --- a/apps/chestManager.lua +++ b/apps/chestManager.lua @@ -1023,7 +1023,7 @@ function listingPage:eventHandler(event) elseif event.type == 'craft' or event.type == 'grid_select_right' then local item = self.grid:getSelected() - if Craft.findRecipe(item) or item.has_recipe then + if Craft.findRecipe(item) or item.is_craftable then UI:setPage('craft', self.grid:getSelected()) else self.notification:error('No recipe defined')