aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOch Noe <och_noe@forksworld.de>2019-06-01 22:55:07 +0200
committerOch Noe <och_noe@forksworld.de>2019-06-01 22:55:07 +0200
commit4ebb1949dfbefa44935c786ebfd592905a695fa1 (patch)
tree9342595e6b3f89cd1a1bdb713d71a8adcec92231
parentd3e14b0e06837b2f6d7a7e6689973c056d51b663 (diff)
downloadmoreblocks-4ebb1949dfbefa44935c786ebfd592905a695fa1.tar.gz
moreblocks-4ebb1949dfbefa44935c786ebfd592905a695fa1.tar.bz2
moreblocks-4ebb1949dfbefa44935c786ebfd592905a695fa1.zip
moreblocks.mod = "undo" added
-rw-r--r--crafting.lua18
-rw-r--r--init.lua3
2 files changed, 21 insertions, 0 deletions
diff --git a/crafting.lua b/crafting.lua
index 875f56a..6053e58 100644
--- a/crafting.lua
+++ b/crafting.lua
@@ -569,6 +569,24 @@ minetest.register_craft({
type = "cooking", output = "moreblocks:tar", recipe = "default:gravel",
})
+-- 2019-06-01
+-- minetest.register_craft({
+-- type = "cooking",
+-- cooktime = 45, -- 5*9
+-- output = "default:stone 81",
+-- recipe = "moreblocks:cobble_condensed"
+ })
+
+-- minetest.register_craft({
+-- type = "grinding",
+-- time = 27, -- 3*9
+-- output = "default:cobble 81",
+-- recipe = "moreblocks:cobble_condensed"
+-- })
+
+
+
+
minetest.register_craft({
type = "shapeless",
output = "moreblocks:copperpatina",
diff --git a/init.lua b/init.lua
index 4bdc98c..8deff58 100644
--- a/init.lua
+++ b/init.lua
@@ -10,6 +10,9 @@ Licensed under the zlib license. See LICENSE.md for more information.
moreblocks = {}
+-- 2019-06-01
+moreblocks.mod = "undo"
+
local S
if minetest.global_exists("intllib") then
if intllib.make_gettext_pair then