fix small typos (False -> false)

This commit is contained in:
Vanessa Ezekowitz 2013-12-21 03:26:26 -05:00
parent 61d7bde79a
commit 9f3b2f1323
1 changed files with 2 additions and 2 deletions

View File

@ -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