diff options
author | ShadowNinja <shadowninja@minetest.net> | 2016-03-21 19:39:38 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2016-03-21 21:27:26 -0400 |
commit | 237126d3dbac0075b4ff83d47dd5141f3de3af5b (patch) | |
tree | 0ca60324b38848f84a92633c759df50d06ec89ca | |
parent | 097d0335858f85b4c2e85e801caef1976f585aa6 (diff) |
Adjust mining laser start offset
-rw-r--r-- | technic/tools/mining_lasers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/tools/mining_lasers.lua b/technic/tools/mining_lasers.lua index c09aa92..802b9da 100644 --- a/technic/tools/mining_lasers.lua +++ b/technic/tools/mining_lasers.lua @@ -61,7 +61,7 @@ local function laser_shoot(player, range, particle_texture, sound) local start_pos = vector.new(player_pos) -- Adjust to head height - start_pos.y = start_pos.y + 1.9 + start_pos.y = start_pos.y + 1.6 minetest.add_particle({ pos = startpos, vel = dir, |