Merge pull request 'Fix crash when parrot sits on shoulder' (#3696) from fix_parrot_rotation_crash into master

Reviewed-on: MineClone2/MineClone2#3696
This commit is contained in:
ancientmarinerdev 2023-05-09 22:04:09 +00:00
commit 453e90741d
1 changed files with 5 additions and 2 deletions

View File

@ -348,7 +348,7 @@ function mob_class:check_head_swivel(dtime)
who_are_you_looking_at (self)
local final_rotation = vector.new(0,0,0)
local final_rotation = vector.zero()
local oldp,oldr = self.object:get_bone_position(self.head_swivel)
if self._locked_object and (self._locked_object:is_player() or self._locked_object:get_luaentity()) and self._locked_object:get_hp() > 0 then
@ -360,8 +360,11 @@ function mob_class:check_head_swivel(dtime)
_locked_object_eye_height = self._locked_object:get_properties().eye_height
end
if _locked_object_eye_height then
local self_rot = self.object:get_rotation()
if self.object:get_attach() then
-- If a mob is attached, should we really be messing with what they are looking at?
-- Should this be excluded?
if self.object:get_attach() and self.object:get_attach():get_rotation() then
self_rot = self.object:get_attach():get_rotation()
end