diff options
author | Och Noe <och_noe@forksworld.de> | 2019-06-01 22:55:07 +0200 |
---|---|---|
committer | Och Noe <och_noe@forksworld.de> | 2019-06-01 22:55:07 +0200 |
commit | 4ebb1949dfbefa44935c786ebfd592905a695fa1 (patch) | |
tree | 9342595e6b3f89cd1a1bdb713d71a8adcec92231 | |
parent | d3e14b0e06837b2f6d7a7e6689973c056d51b663 (diff) | |
download | moreblocks-4ebb1949dfbefa44935c786ebfd592905a695fa1.tar.gz moreblocks-4ebb1949dfbefa44935c786ebfd592905a695fa1.tar.bz2 moreblocks-4ebb1949dfbefa44935c786ebfd592905a695fa1.zip |
moreblocks.mod = "undo" added
-rw-r--r-- | crafting.lua | 18 | ||||
-rw-r--r-- | init.lua | 3 |
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", @@ -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 |