summaryrefslogtreecommitdiff
path: root/technic_worldgen/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'technic_worldgen/init.lua')
-rw-r--r--technic_worldgen/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/technic_worldgen/init.lua b/technic_worldgen/init.lua
index 73e9fc7..bee44c4 100644
--- a/technic_worldgen/init.lua
+++ b/technic_worldgen/init.lua
@@ -1,8 +1,8 @@
local modpath = minetest.get_modpath("technic_worldgen")
-technic = technic or {}
+technic = rawget(_G, "technic") or {}
technic.worldgen = {}
-if intllib then
+if rawget(_G, "intllib") then
technic.worldgen.gettext = intllib.Getter()
else
technic.worldgen.gettext = function(s) return s end