diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-10-09 20:06:24 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-10-09 20:06:24 +0100 |
commit | cc5dd341fecf5cb225253e2e6950213050073886 (patch) | |
tree | bc18b74a031a180e37005f000e18adbbfab837c3 /init.lua | |
parent | ea938b9ba55259124f54c7cb1311639da18f2c3f (diff) |
Code tidy
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 20 |
1 files changed, 5 insertions, 15 deletions
@@ -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") |