From daa61352111cbee9588efad2a5762fea7ad37cda Mon Sep 17 00:00:00 2001 From: Zefram Date: Fri, 1 Aug 2014 17:56:32 +0100 Subject: [PATCH] Update alloying craft guide to match machine The alloy furnaces have been changed to lay out the input slots horizontally. The craft guide should match that, for mnemonic value. --- technic/machines/register/recipes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/technic/machines/register/recipes.lua b/technic/machines/register/recipes.lua index 28a0275..22e9866 100644 --- a/technic/machines/register/recipes.lua +++ b/technic/machines/register/recipes.lua @@ -8,8 +8,8 @@ function technic.register_recipe_type(typename, origdata) if unified_inventory and unified_inventory.register_craft_type and data.output_size == 1 then unified_inventory.register_craft_type(typename, { description = data.description, - height = data.input_size, - width = 1, + width = data.input_size, + height = 1, }) end data.recipes = {}