diff options
author | Carter Kolwey <cheapiephp@gmail.com> | 2017-02-27 17:58:43 -0600 |
---|---|---|
committer | Carter Kolwey <cheapiephp@gmail.com> | 2017-02-27 17:58:43 -0600 |
commit | 5e19514c60bd46a939beeeddde1125f137c486fb (patch) | |
tree | 793d37ffbe376c2dd41dd25603e2cf00140df627 | |
parent | 0139eab9a29d04b1b18d7e5d95b3c1f1fc52ccda (diff) |
Add dirt recipe to centrifuge
4 dirt -> 2 clay lumps, 1 sand, 1 gravel
-rw-r--r-- | technic/machines/register/centrifuge_recipes.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/technic/machines/register/centrifuge_recipes.lua b/technic/machines/register/centrifuge_recipes.lua index 05642f5..b4db47c 100644 --- a/technic/machines/register/centrifuge_recipes.lua +++ b/technic/machines/register/centrifuge_recipes.lua @@ -14,6 +14,7 @@ local recipes = { { "technic:bronze_dust 4", "technic:copper_dust 3", "technic:tin_dust" }, { "technic:stainless_steel_dust 4", "technic:wrought_iron_dust 3", "technic:chromium_dust" }, { "technic:brass_dust 3", "technic:copper_dust 2", "technic:zinc_dust" }, + { "default:dirt 4", "default:sand", "default:gravel", "default:clay_lump 2" }, } local function uranium_dust(p) @@ -34,5 +35,5 @@ if minetest.get_modpath("farming") then end for _, data in pairs(recipes) do - technic.register_separating_recipe({ input = { data[1] }, output = { data[2], data[3] } }) + technic.register_separating_recipe({ input = { data[1] }, output = { data[2], data[3], data[4] } }) end |