diff --git a/scripts/_00e_theriantrophist_playeraswerewolf.pex b/scripts/_00e_theriantrophist_playeraswerewolf.pex index 5f74b870..2eb51953 100644 Binary files a/scripts/_00e_theriantrophist_playeraswerewolf.pex and b/scripts/_00e_theriantrophist_playeraswerewolf.pex differ diff --git a/source/scripts/_00e_theriantrophist_playeraswerewolf.psc b/source/scripts/_00e_theriantrophist_playeraswerewolf.psc index d27fa99a..fcd8508c 100644 --- a/source/scripts/_00e_theriantrophist_playeraswerewolf.psc +++ b/source/scripts/_00e_theriantrophist_playeraswerewolf.psc @@ -351,7 +351,7 @@ Function _ReapplySkins() Actor player = GetReference() as Actor - if player.IsOnMount() || player.IsSwimming() + if !player || player.IsOnMount() || player.IsSwimming() return endif @@ -383,7 +383,8 @@ Function _FixNotTransformedPlayerSkin() endif Actor player = GetReference() as Actor - if ! player.IsOnMount() && ! player.IsSwimming() + + if player && ! player.IsOnMount() && ! player.IsSwimming() player.getActorBase().SetSkin(player.GetRace().GetSkin()) player.QueueNiNodeUpdate() endif