diff options
author | Joshua <ehlodex@users.noreply.github.com> | 2017-12-14 13:58:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-14 13:58:42 -0500 |
commit | 63deaa61e5fd2d1ed90496f92ce894752f9a749d (patch) | |
tree | bca33af99655b82b73f527c77f350ead18f44f5e | |
parent | 98e3e01610071c9b7f0dbfc6a1c55d62d95b699f (diff) | |
download | ehlphabet-63deaa61e5fd2d1ed90496f92ce894752f9a749d.tar.gz ehlphabet-63deaa61e5fd2d1ed90496f92ce894752f9a749d.tar.bz2 ehlphabet-63deaa61e5fd2d1ed90496f92ce894752f9a749d.zip |
Modified recipe for Letter Machine
-rw-r--r-- | init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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'},
}
})
|