summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2014-08-01 17:56:32 +0100
committerZefram <zefram@fysh.org>2014-08-01 17:56:32 +0100
commitdaa61352111cbee9588efad2a5762fea7ad37cda (patch)
tree0aa20b697135153252ebc293ee177b1229ebd419
parentbeb480bec2ffc7d11dbe2b9c3608927f4c5af402 (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.lua4
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 = {}