Tim
2015-02-05 41a10a86d5d2257778b2e422b8a560ed8ea2cbba
technic/init.lua
@@ -2,19 +2,22 @@
-- namespace: technic
-- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl>
technic = {}
technic = rawget(_G, "technic") or {}
technic.tube_inject_item = pipeworks.tube_inject_item or function (pos, start_pos, velocity, item)
   local tubed = pipeworks.tube_item(vector.new(pos), item)
   tubed:get_luaentity().start_pos = vector.new(start_pos)
   tubed:setvelocity(velocity)
   tubed:setacceleration(vector.new(0, 0, 0))
end
local load_start = os.clock()
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
local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end
technic.getter = S
-- Read configuration file
dofile(modpath.."/config.lua")
@@ -40,7 +43,7 @@
-- Aliases for legacy node/item names
dofile(modpath.."/legacy.lua")
if minetest.setting_get("log_mod") then
if minetest.setting_getbool("log_mods") then
   print(S("[Technic] Loaded in %f seconds"):format(os.clock() - load_start))
end