Fix get_velocity (mobs internal)

This commit is contained in:
jordan4ibanez 2021-04-15 11:25:55 -04:00
parent 14207dd96a
commit e53a193c4f
1 changed files with 4 additions and 1 deletions

View File

@ -261,8 +261,11 @@ end
local get_velocity = function(self)
local v = self.object:get_velocity()
v.y = 0
if v then
return (v.x * v.x + v.z * v.z) ^ 0.5
return vector_length(v)
end
return 0