From d452d16fa6a0364e0c8e171a4b333d6b85e0c519 Mon Sep 17 00:00:00 2001
From: est31 <MTest31@outlook.com>
Date: Tue, 03 Feb 2015 07:43:58 +0100
Subject: [PATCH] Make technic chests independent from unified inventory

---
 technic/tools/flashlight.lua |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/technic/tools/flashlight.lua b/technic/tools/flashlight.lua
index a2cfe33..0d22f11 100644
--- a/technic/tools/flashlight.lua
+++ b/technic/tools/flashlight.lua
@@ -13,6 +13,8 @@
 	description = S("Flashlight"),
 	inventory_image = "technic_flashlight.png",
 	stack_max = 1,
+	wear_represents = "technic_RE_charge",
+	on_refill = technic.refill_RE_charge,
 })
 
 minetest.register_craft({
@@ -77,7 +79,11 @@
 		local rounded_pos = vector.round(pos)
 		rounded_pos.y = rounded_pos.y + 1
 		local old_pos = player_positions[player_name]
-		local player_moved = not vector.equals(old_pos, rounded_pos)
+		local player_moved = old_pos and not vector.equals(old_pos, rounded_pos)
+		if not old_pos then
+			old_pos = rounded_pos
+			player_moved = true
+		end
 
 		-- Remove light, flashlight weared out or was removed from hotbar
 		if was_wielding[player_name] and not flashlight_weared then

--
Gitblit v1.8.0