From 623fcae4a4ad3ec12cc242b29b0d781357cff3f7 Mon Sep 17 00:00:00 2001
From: Zefram <zefram@fysh.org>
Date: Sat, 24 May 2014 00:24:30 +0200
Subject: [PATCH] Fix supply converter

---
 technic/init.lua |   30 ++++++++----------------------
 1 files changed, 8 insertions(+), 22 deletions(-)

diff --git a/technic/init.lua b/technic/init.lua
index 8c4fa09..7d41b89 100644
--- a/technic/init.lua
+++ b/technic/init.lua
@@ -8,6 +8,13 @@
 local modpath = minetest.get_modpath("technic")
 technic.modpath = modpath
 
+-- Boilerplate to support intllib
+if intllib then
+	technic.getter = intllib.Getter()
+else
+	technic.getter = function(s) return s end
+end
+local S = technic.getter
 
 -- Read configuration file
 dofile(modpath.."/config.lua")
@@ -33,28 +40,7 @@
 -- Aliases for legacy node/item names
 dofile(modpath.."/legacy.lua")
 
-function has_locked_chest_privilege(meta, player)
-	if player:get_player_name() ~= meta:get_string("owner") then
-		return false
-	end
-	return true
-end
-
--- Swap nodes out. Return the node name.
-function hacky_swap_node(pos, name)
-	local node = minetest.get_node(pos)
-	if node.name ~= name then
-		local meta = minetest.get_meta(pos)
-		local meta_table = meta:to_table()
-		node.name = name
-		minetest.set_node(pos, node)
-		meta = minetest.get_meta(pos)
-		meta:from_table(meta_table)
-	end
-	return node.name
-end
-
 if minetest.setting_get("log_mod") then
-	print("[Technic] Loaded in "..tostring(os.clock() - load_start).."s")
+	print(S("[Technic] Loaded in %f seconds"):format(os.clock() - load_start))
 end
 

--
Gitblit v1.8.0