Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. minetest.register_craft({
  2. output = 'funnystone:funnystone',
  3. recipe = {
  4. {'group:wood', '', ''},
  5. {'', '', ''},
  6. {'', '', ''},
  7. }
  8. })
  9. minetest.register_craft({
  10. output = 'funnystone:funnystonebrick',
  11. recipe = {
  12. {'group:cobble', 'funnystone:funnyblock', ''},
  13. {'', '', ''},
  14. {'', '', ''},
  15. }
  16. })
  17. print(dump(minetest.get_all_craft_recipes('funnystone:funnystone')))
  18. print(dump(minetest.get_craft_recipe('funnystone:funnystone')))
  19.  
  20. #####
  21. OUTPUT AFTER sapier's fix d902bd31c4b9e8c2a0d85af831a5a23f827a48a2
  22. ####
  23. {
  24. {
  25. type = "normal",
  26. width = 3,
  27. output = "funnystone:funnystone",
  28. items = {
  29. "group:wood"
  30. }
  31. }
  32. }
  33. {
  34. type = "normal",
  35. width = 3,
  36. items = {
  37. "group:wood"
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement