summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extranodes/aspirin.lua2
-rw-r--r--technic/machines/register/extractor_recipes.lua3
-rw-r--r--technic/tools/walking_tractor.lua1
3 files changed, 4 insertions, 2 deletions
diff --git a/extranodes/aspirin.lua b/extranodes/aspirin.lua
index a9ddad8..126f726 100644
--- a/extranodes/aspirin.lua
+++ b/extranodes/aspirin.lua
@@ -6,7 +6,7 @@
local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end
-if minetest.get_modpath("hunger") and minetest.get_modpath("ethereal") then
+if (minetest.get_modpath("hunger") or minetest.get_modpath("hbhunger")) and minetest.get_modpath("ethereal") then
minetest.register_craftitem(":technic:aspirin_pill", {
description = S("Aspirin pill"),
diff --git a/technic/machines/register/extractor_recipes.lua b/technic/machines/register/extractor_recipes.lua
index e052971..15da6b4 100644
--- a/technic/machines/register/extractor_recipes.lua
+++ b/technic/machines/register/extractor_recipes.lua
@@ -29,7 +29,7 @@ if minetest.get_modpath("dye") then
{"bushes:blueberry", unifieddyes and "unifieddyes:magenta_s50 4" or "dye:magenta 4"},
}
- if minetest.get_modpath("hunger") and minetest.get_modpath("ethereal") then
+ if (minetest.get_modpath("hunger") or minetest.get_modpath("hbhunger")) and minetest.get_modpath("ethereal") then
table.insert(dye_recipes, {"ethereal:willow_twig 12", "technic:aspirin_pill"})
end
@@ -44,6 +44,7 @@ if minetest.get_modpath("dye") then
table.insert(dye_recipes, {"farming:beans", "dye:green 4"})
table.insert(dye_recipes, {"farming:grapes", "dye:violet 4"})
table.insert(dye_recipes, {"farming:cocoa_beans", "dye:brown 4"})
+ table.insert(dye_recipes, {"farming:beetroot", "dye:red 2"})
-- Some extra recipes:
-- Himalayan rhubarb root can give yellow dye IRL
table.insert(dye_recipes, {"farming:rhubarb", "dye:yellow 4"})
diff --git a/technic/tools/walking_tractor.lua b/technic/tools/walking_tractor.lua
index 83e464c..2ac61e6 100644
--- a/technic/tools/walking_tractor.lua
+++ b/technic/tools/walking_tractor.lua
@@ -51,6 +51,7 @@ local ripe_for_harvest = {
"farming:rhubarb_3",
"farming:tomato_8",
"farming:wheat_8",
+ "farming:beetroot_5",
"ethereal:onion_5",
"ethereal:strawberry_8",
-- also doubles as a snow-plough