diff --git a/Source/Framework/Constants/CreatureConst.cs b/Source/Framework/Constants/CreatureConst.cs index 15e1bac28..ad4aee9dd 100644 --- a/Source/Framework/Constants/CreatureConst.cs +++ b/Source/Framework/Constants/CreatureConst.cs @@ -166,7 +166,7 @@ namespace Framework.Constants Disallowed = (Unk0 | /* UnconsciousOnDeath | */ /* AllowMountedCombat | */ GarrisonPet | /* UiCanGetPosition | */ /* AiObstacle | */ AlternativeDefaultLanguage | /* SuppressAllNpcFeedback | */ IgnoreCombat | SuppressNpcFeedback | Unk10 | Unk11 | - Unk12 | /* FakeDead | */ /* NoFacingOnInteractAndFastFacingChase | */ /* UntargetableFromUi | */ + Unk12 | FakeDead | /* NoFacingOnInteractAndFastFacingChase | */ /* UntargetableFromUi | */ /* NoFacingOnInteractWhileFakeDead | */ AlreadySkinned | /* SuppressAllNpcSounds | */ /* SuppressNpcSounds | */ AllowInteractionWhileInCombat | Unk21 | /* DontFadeOut | */ Unk23 | ForceHideNameplate | Unk25 | Unk26 | Unk27 | diff --git a/Source/Game/Entities/Player/Player.cs b/Source/Game/Entities/Player/Player.cs index 8c901942e..b71493071 100644 --- a/Source/Game/Entities/Player/Player.cs +++ b/Source/Game/Entities/Player/Player.cs @@ -5473,7 +5473,7 @@ namespace Game.Entities // not unfriendly/hostile if (!creature.IsInteractionAllowedWhileHostile() && creature.GetReactionTo(this) <= ReputationRank.Unfriendly) - return nullptr; + return null; if (creature.IsInCombat() && !creature.IsInteractionAllowedInCombat()) return null;