rename global function

This commit is contained in:
TenPlus1 2020-05-07 11:35:29 +01:00
parent bd06ad8d6e
commit f32b69a654
1 changed files with 2 additions and 2 deletions

View File

@ -590,8 +590,8 @@ local yaw_to_pos = function(self, target, rot)
return yaw
end
function mobs:turn_to_pos(self, target, rot)
return turn_to_pos(self, target, rot)
function mobs:yaw_to_pos(self, target, rot)
return yaw_to_pos(self, target, rot)
end