From 88f42539bb378ec25410967634c1e3ae274473a3 Mon Sep 17 00:00:00 2001
From: dokutan <54861821+dokutan@users.noreply.github.com>
Date: Sun, 03 May 2020 19:53:43 +0200
Subject: [PATCH] Fix error caused by locked chest recipes (#548)

---
 technic_worldgen/init.lua |   24 +++++++++++++++++++++---
 1 files changed, 21 insertions(+), 3 deletions(-)

diff --git a/technic_worldgen/init.lua b/technic_worldgen/init.lua
index 37aa386..2f36920 100644
--- a/technic_worldgen/init.lua
+++ b/technic_worldgen/init.lua
@@ -1,8 +1,26 @@
--- Minetest 0.4.6 : technic_worldgen
+local modpath = minetest.get_modpath("technic_worldgen")
 
-modpath=minetest.get_modpath("technic_worldgen")
+technic = rawget(_G, "technic") or {}
+technic.worldgen = {
+	gettext = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end,
+}
 
+dofile(modpath.."/config.lua")
 dofile(modpath.."/nodes.lua")
 dofile(modpath.."/oregen.lua")
---dofile(modpath.."/stairslike.lua")
 dofile(modpath.."/crafts.lua")
+
+-- Rubber trees, moretrees also supplies these
+if not minetest.get_modpath("moretrees") then
+	dofile(modpath.."/rubber.lua")
+else
+	-- older versions of technic provided rubber trees regardless
+	minetest.register_alias("technic:rubber_sapling", "moretrees:rubber_tree_sapling")
+	minetest.register_alias("technic:rubber_tree_empty", "moretrees:rubber_tree_trunk_empty")
+end
+
+-- mg suppport
+if minetest.get_modpath("mg") then
+	dofile(modpath.."/mg.lua")
+end
+

--
Gitblit v1.8.0