Modified recipe for Letter Machine

master
Joshua 2017-12-14 13:58:42 -05:00 committed by GitHub
parent 98e3e01610
commit 63deaa61e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -88,9 +88,9 @@ minetest.register_craft({ output = "ehlphabet:block 8",
--RECIPE: build the machine!
minetest.register_craft({ output = "ehlphabet:machine",
recipe = {
{'default:stick', '', 'default:stick'},
{'default:stick', 'default:coal_lump', 'default:stick'},
{'default:coal_lump', 'ehlphabet:block', 'default:coal_lump'},
{'default:paper', '', 'default:paper'},
{'default:stick', 'default:coal_lump', 'default:stick'},
}
})