Update alloying craft guide to match machine
authorZefram <zefram@fysh.org>
Fri, 1 Aug 2014 16:56:32 +0000 (17:56 +0100)
committerZefram <zefram@fysh.org>
Fri, 1 Aug 2014 16:56:32 +0000 (17:56 +0100)
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

index 28a0275a174659f64774b9d65c432d3613157172..22e98666ebdebc26bc86dfa28491025eadc0ac1e 100644 (file)
@@ -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 = {}