diff options
-rw-r--r-- | hole.lua | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -31,8 +31,9 @@ while true do for _,v in ipairs(targets) do if v.z <= 7 and v.z >= -8 and v.x <= 7 and v.x >= -8 - then + then local yaw,pitch = yaw_pitch(v.x,v.y,v.z) + print(v.x,v.y,v.z,yaw,pitch,v.name) laser.fire(yaw,pitch,4) end end |