From dc0689018d27a68ae2987194285558b3add09be2 Mon Sep 17 00:00:00 2001
From: Vanessa Dannenberg <vanessa.e.dannenberg@gmail.com>
Date: Sun, 25 Nov 2018 16:10:23 +0100
Subject: [PATCH] move CNC machine into its own mod

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

diff --git a/technic/tools/flashlight.lua b/technic/tools/flashlight.lua
index ff49c0a..252dc8c 100644
--- a/technic/tools/flashlight.lua
+++ b/technic/tools/flashlight.lua
@@ -40,10 +40,12 @@
 		if hotbar[i]:get_name() == "technic:flashlight" then
 			local meta = minetest.deserialize(hotbar[i]:get_metadata())
 			if meta and meta.charge and meta.charge >= 2 then
-				meta.charge = meta.charge - 2;
-				technic.set_RE_wear(hotbar[i], meta.charge, flashlight_max_charge)
-				hotbar[i]:set_metadata(minetest.serialize(meta))
-				inv:set_stack("main", i, hotbar[i])
+				if not technic.creative_mode then
+					meta.charge = meta.charge - 2;
+					technic.set_RE_wear(hotbar[i], meta.charge, flashlight_max_charge)
+					hotbar[i]:set_metadata(minetest.serialize(meta))
+					inv:set_stack("main", i, hotbar[i])
+				end
 				return true
 			end
 		end
@@ -79,7 +81,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
@@ -105,7 +111,7 @@
 
 minetest.register_node("technic:light", {
 	drawtype = "glasslike",
-	tile_images = {"technic_light.png"},
+	tiles = {"technic_light.png"},
 	paramtype = "light",
 	groups = {not_in_creative_inventory=1},
 	drop = "",

--
Gitblit v1.8.0