diff options
author | Zefram <zefram@fysh.org> | 2014-07-06 16:04:25 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-07 15:15:30 +0200 |
commit | fb15df52e2a3a713fd6446f89a88faa5480ed2eb (patch) | |
tree | f2eb50b3d01d26dab15b86dbdb19a720acc74f8f | |
parent | 43295b5b7f2db8292260f0eecd3b5514394a94b3 (diff) |
Fix craft guide for alloy cooking et al
A typo in commit d55ecc39f954b33c17ae9a1da4aeff6382fcb790 made recipes
for alloy cooking, compressing, and all other craft types sharing that
machine code, to be shown with three ingredient slots instead of the
correct one or two.
-rw-r--r-- | technic/machines/register/recipes.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/machines/register/recipes.lua b/technic/machines/register/recipes.lua index 768c620..cff8ca1 100644 --- a/technic/machines/register/recipes.lua +++ b/technic/machines/register/recipes.lua @@ -5,7 +5,7 @@ function technic.register_recipe_type(typename, desc, numitems) if unified_inventory and unified_inventory.register_craft_type then unified_inventory.register_craft_type(typename, { description = desc, - height = numtiems, + height = numitems, width = 1, }) end |