diff options
author | ThatGraemeGuy <thatgraemeguy@users.noreply.github.com> | 2014-10-09 14:06:05 +0200 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2015-01-12 17:51:55 -0500 |
commit | 2e04374de8bd0e39850e0454742e3c411fab6dac (patch) | |
tree | 6cbb5b4c7e79db365ad8737c46cccfc3ed1e146a | |
parent | bc0ac581aa2b79cd48e4b2083d8c7890ace580aa (diff) |
Add gloopores' Kalite dust as a more effecient fuel than lumps
-rw-r--r-- | technic/machines/register/grinder_recipes.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua index 6ab19e7..2d76333 100644 --- a/technic/machines/register/grinder_recipes.lua +++ b/technic/machines/register/grinder_recipes.lua @@ -129,3 +129,10 @@ minetest.register_craft({ burntime = 50, }) +if minetest.get_modpath("gloopores") or minetest.get_modpath("glooptest") then + minetest.register_craft({ + type = "fuel", + recipe = "technic:kalite_dust", + burntime = 37.5, + }) +end |