diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-05-09 00:20:10 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-05-09 00:20:10 +0300 |
commit | b72c312924f5b4f2dd7ccca9c71d0d7c56eed2e1 (patch) | |
tree | 33eb13dd3f23cded4156d8dbb5871593905a241d | |
parent | bccc2294b6a993e1d10b6c9ede152a7f10c9046a (diff) |
The return of the sandstone
-rw-r--r-- | technic/machines/register/grinder_recipes.lua | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua index b0e5f9e..3726053 100644 --- a/technic/machines/register/grinder_recipes.lua +++ b/technic/machines/register/grinder_recipes.lua @@ -60,11 +60,13 @@ end -- defuse the sandstone -> 4 sand recipe to avoid infinite sand bugs (also consult the inverse compressor recipe) -- this snippet, when executed, also corrupts some dye+wool combinations. A remedial -- workaround is included in extractor recipes, since it's where we work with dyes. -minetest.clear_craft({ - recipe = { - {"default:sandstone"} - } -}) +-- UPD: after due consideration, this recipe removal is rejected altogether. +-- The dye workaround, however, stays, just to be safe. +-- minetest.clear_craft({ +-- recipe = { +-- {"default:sandstone"} +-- } +-- }) if minetest.get_modpath("farming") then table.insert(recipes, {"farming:seed_wheat", "farming:flour 1"}) |