diff options
author | ShadowNinja <shadowninja@minetest.net> | 2014-07-21 00:14:55 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-07-21 00:14:55 -0400 |
commit | 87fc21443ce5a36fcdd6f32da0e2cd073684b83f (patch) | |
tree | 8eb737403ab4cfc976f41c5f4e79963d3f8bd945 | |
parent | 37c06a91107965a27b1fc02f5f9a646891cc75be (diff) |
Add hack for uninitialized players in flashlight
-rw-r--r-- | 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 @@ 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 |