From: Vanessa Ezekowitz Date: Sat, 21 Dec 2013 08:26:26 +0000 (-0500) Subject: fix small typos (False -> false) X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=9f3b2f1323f7c520d70239d58a54e31d531d1c12;p=zefram%2Fminetest%2Fpipeworks.git fix small typos (False -> false) --- diff --git a/autocrafter.lua b/autocrafter.lua index 195bd1e..070b3de 100644 --- a/autocrafter.lua +++ b/autocrafter.lua @@ -30,11 +30,11 @@ local function autocraft(inventory, pos) local recipeUnchanged = true for i = 1, 9 do if recipe[i]:get_name() ~= recipe_last[i]:get_name() then - recipeUnchanged = False + recipeUnchanged = false break end if recipe[i]:get_count() ~= recipe_last[i]:get_count() then - recipeUnchanged = False + recipeUnchanged = false break end end