From 56e96b2593817eb77fcb51e4a81c80f4df6bb0c7 Mon Sep 17 00:00:00 2001
From: Tim <t4im@users.noreply.github.com>
Date: Fri, 30 Jan 2015 05:16:41 +0100
Subject: [PATCH] add sawdust and tree/wood grindings with arcacia tree for dye and provide a better alternative rubbertree->latex path that yields the same as the tree tap, but requires more machine work

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

diff --git a/technic/tools/flashlight.lua b/technic/tools/flashlight.lua
index ff49c0a..0d22f11 100644
--- a/technic/tools/flashlight.lua
+++ b/technic/tools/flashlight.lua
@@ -79,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