From 3190d2bb510017613914907ca632cdd325cc51e7 Mon Sep 17 00:00:00 2001
From: Cristiano Magro <cristiano.magro@vola.it>
Date: Sun, 11 Oct 2020 18:05:52 +0200
Subject: [PATCH] fix some typo variable name

---
 technic_worldgen/init.lua |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/technic_worldgen/init.lua b/technic_worldgen/init.lua
index 6209017..2f36920 100644
--- a/technic_worldgen/init.lua
+++ b/technic_worldgen/init.lua
@@ -1,5 +1,11 @@
 local 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.."/crafts.lua")
@@ -7,5 +13,14 @@
 -- 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