projects
/
zefram
/
minetest
/
technic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
37c06a9
)
Add hack for uninitialized players in flashlight
author
ShadowNinja
<shadowninja@minetest.net>
Mon, 21 Jul 2014 04:14:55 +0000
(
00:14
-0400)
committer
ShadowNinja
<shadowninja@minetest.net>
Mon, 21 Jul 2014 04:14:55 +0000
(
00:14
-0400)
technic/tools/flashlight.lua
patch
|
blob
|
history
diff --git
a/technic/tools/flashlight.lua
b/technic/tools/flashlight.lua
index ff49c0acb9ccfbcfe29e3aa28e219c6ff316ab4c..0d22f11fec740ed385267e4c442d4b0d91e62e22 100644
(file)
--- a/
technic/tools/flashlight.lua
+++ b/
technic/tools/flashlight.lua
@@
-79,7
+79,11
@@
minetest.register_globalstep(function(dtime)
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