From 7d610b7c80487cd7a6e66f55c9c3b1190e5dfc7f Mon Sep 17 00:00:00 2001
From: Zefram <zefram@fysh.org>
Date: Mon, 18 Aug 2014 18:09:37 +0200
Subject: [PATCH] Tube capability for tool workshop

---
 technic/init.lua |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/technic/init.lua b/technic/init.lua
index 7d41b89..28427da 100644
--- a/technic/init.lua
+++ b/technic/init.lua
@@ -2,7 +2,14 @@
 -- namespace: technic
 -- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl>
 
-technic = {}
+technic = 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")
@@ -40,7 +47,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
 

--
Gitblit v1.8.0