From fb4fef783b605dcdc73554019ef46d8354614ad4 Mon Sep 17 00:00:00 2001
From: Louis Royer <55180044+louisroyer@users.noreply.github.com>
Date: Sun, 26 Apr 2020 11:33:12 +0200
Subject: [PATCH] Shapeless locked chests crafts (chest + lockpad) (#530)

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

diff --git a/technic_worldgen/init.lua b/technic_worldgen/init.lua
index bee44c4..2f36920 100644
--- a/technic_worldgen/init.lua
+++ b/technic_worldgen/init.lua
@@ -1,12 +1,9 @@
 local modpath = minetest.get_modpath("technic_worldgen")
 
 technic = rawget(_G, "technic") or {}
-technic.worldgen = {}
-if rawget(_G, "intllib") then
-	technic.worldgen.gettext = intllib.Getter()
-else
-	technic.worldgen.gettext = function(s) return s end
-end
+technic.worldgen = {
+	gettext = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end,
+}
 
 dofile(modpath.."/config.lua")
 dofile(modpath.."/nodes.lua")

--
Gitblit v1.8.0