summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua20
1 files changed, 5 insertions, 15 deletions
diff --git a/init.lua b/init.lua
index 87543fc..33b3218 100644
--- a/init.lua
+++ b/init.lua
@@ -67,41 +67,31 @@ minetest.register_craft({
minetest.register_craft( {
type = "shapeless",
output = "dye:dark_grey 3",
- recipe = {
- "dye:black", "dye:black", "dye:white",
- },
+ recipe = {"dye:black", "dye:black", "dye:white"}
})
minetest.register_craft( {
type = "shapeless",
output = "dye:grey 3",
- recipe = {
- "dye:black", "dye:white", "dye:white",
- },
+ recipe = {"dye:black", "dye:white", "dye:white"}
})
minetest.register_craft( {
type = "shapeless",
output = "dye:green 4",
- recipe = {
- "default:cactus",
- },
+ recipe = {"default:cactus"}
})
minetest.register_craft( {
type = "shapeless",
output = "dye:black 4",
- recipe = {
- "default:coal_lump",
- },
+ recipe = {"default:coal_lump"}
})
minetest.register_craft( {
type = "shapeless",
output = "dye:brown 4",
- recipe = {
- "default:dry_shrub",
- },
+ recipe = {"default:dry_shrub"}
})
print ("[MOD] Baked Clay loaded")