summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2016-10-09 20:06:24 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2016-10-09 20:06:24 +0100
commitcc5dd341fecf5cb225253e2e6950213050073886 (patch)
treebc18b74a031a180e37005f000e18adbbfab837c3
parentea938b9ba55259124f54c7cb1311639da18f2c3f (diff)
Code tidy
-rw-r--r--description.txt1
-rw-r--r--init.lua20
-rw-r--r--mod.conf1
-rw-r--r--screenshot.pngbin0 -> 5241 bytes
4 files changed, 7 insertions, 15 deletions
diff --git a/description.txt b/description.txt
new file mode 100644
index 0000000..b469a1b
--- /dev/null
+++ b/description.txt
@@ -0,0 +1 @@
+Adds the ability to bake clay into blocks and colour them with dye. \ No newline at end of file
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")
diff --git a/mod.conf b/mod.conf
new file mode 100644
index 0000000..bdf596f
--- /dev/null
+++ b/mod.conf
@@ -0,0 +1 @@
+name = bakedclay \ No newline at end of file
diff --git a/screenshot.png b/screenshot.png
new file mode 100644
index 0000000..68a950a
--- /dev/null
+++ b/screenshot.png
Binary files differ