Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2014
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. -- Crude furnace
  2. minetest.register_craft({
  3. type = "cooking",
  4. output = "test_mod:crushed_copper_ore",
  5. recipe = "test_mod:copper_ore_block"
  6. })
  7.  
  8. output, decremented_input = minetest.get_craft_result({ method = "cooking", width = 1, items = {ItemStack("test_mod:copper_ore_block")}})
  9. output_item = output.item:to_table()
  10. io.write("recipe: "..dump(output_item).." \n")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement