diff options
author | Zefram <zefram@fysh.org> | 2014-08-01 17:56:32 +0100 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2014-08-01 17:56:32 +0100 |
commit | daa61352111cbee9588efad2a5762fea7ad37cda (patch) | |
tree | 0aa20b697135153252ebc293ee177b1229ebd419 | |
parent | beb480bec2ffc7d11dbe2b9c3608927f4c5af402 (diff) |
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.
-rw-r--r-- | technic/machines/register/recipes.lua | 4 |
1 files 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 = {} |