summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--technic/machines/register/compressor_recipes.lua4
-rw-r--r--technic/machines/register/grindings.lua3
2 files changed, 4 insertions, 3 deletions
diff --git a/technic/machines/register/compressor_recipes.lua b/technic/machines/register/compressor_recipes.lua
index 2576952..021c393 100644
--- a/technic/machines/register/compressor_recipes.lua
+++ b/technic/machines/register/compressor_recipes.lua
@@ -49,8 +49,8 @@ if minetest.get_modpath("ethereal") then
end
if minetest.get_modpath("pathv7") then
- table.insert(recipes, {"default:acacia_tree", "pathv7:bridgewood 1"})
- table.insert(recipes, {"default:jungletree", "pathv7:junglewood 1"})
+ table.insert(recipes, {"default:acacia_wood", "pathv7:bridgewood 1"})
+ table.insert(recipes, {"default:junglewood", "pathv7:junglewood 1"})
end
diff --git a/technic/machines/register/grindings.lua b/technic/machines/register/grindings.lua
index 9231166..018eed9 100644
--- a/technic/machines/register/grindings.lua
+++ b/technic/machines/register/grindings.lua
@@ -49,7 +49,8 @@ local default_extract = dye and "dye:brown 2"
local grinding_recipes = {
{"Common Tree", "group:tree", "group:wood", default_extract },
- {"Rubber Tree", "moretrees:rubber_tree_trunk", rubber_tree_planks, "technic:raw_latex"}
+ {"Rubber Tree", "moretrees:rubber_tree_trunk", rubber_tree_planks, "technic:raw_latex"},
+ {"Rubber Tree", "moretrees:rubber_tree_trunk_empty",rubber_tree_planks, "technic:raw_latex"}
}
for _, data in pairs(grinding_recipes) do