diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2017-02-22 12:57:02 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2017-02-22 12:57:02 +0000 |
commit | 59e8ba64f28b293b716854eeee9550cd9f97cfb9 (patch) | |
tree | bdc5754bfb259af1eabd6ccc492746a1285b51db /mount.lua | |
parent | bf5d976d8e074788bfb98c9a87837bed95c5a8fc (diff) |
Tidied code, added fly arrow check
Diffstat (limited to 'mount.lua')
-rw-r--r-- | mount.lua | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -340,9 +340,6 @@ function mobs.drive(entity, moving_anim, stand_anim, can_fly, dtime) else v = v * 0.25 end --- elseif ni == "walkable" then --- v = 0 --- new_acce.y = 1 end new_velo = get_velocity(v, entity.object:getyaw() - rot_view, velo.y) @@ -415,11 +412,16 @@ function mobs.fly(entity, dtime, speed, shoots, arrow, moving_anim, stand_anim) y = pos.y + 1.5 + dir.y, z = pos.z + 0 + dir.z * 2.5}, arrow) - local vec = {x = dir.x * 6, y = dir.y * 6, z = dir.z * 6} - local yaw = entity.driver:get_look_yaw() - - obj:setyaw(yaw + math.pi / 2) - obj:setvelocity(vec) + local ent = obj:get_luaentity() + if ent then + ent.switch = 1 -- for mob specific arrows + local vec = {x = dir.x * 6, y = dir.y * 6, z = dir.z * 6} + local yaw = entity.driver:get_look_yaw() + obj:setyaw(yaw + math.pi / 2) + obj:setvelocity(vec) + else + obj:remove() + end end -- change animation if stopped |