From 4fd0430eb0583553bbca86d18417150edce891cc Mon Sep 17 00:00:00 2001 From: Hondacrx Date: Sat, 9 Nov 2024 23:30:09 -0500 Subject: [PATCH] Core/Unit: Allow UNIT_FLAG2_FEIGN_DEATH and UNIT_FLAG3_FAKE_DEAD setting in db Port From (https://github.com/TrinityCore/TrinityCore/commit/1b4c324fe1946ad1b595e947ba43e71341adad15) --- Source/Framework/Constants/CreatureConst.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Framework/Constants/CreatureConst.cs b/Source/Framework/Constants/CreatureConst.cs index 2856a0eab..c562017cd 100644 --- a/Source/Framework/Constants/CreatureConst.cs +++ b/Source/Framework/Constants/CreatureConst.cs @@ -115,7 +115,7 @@ namespace Framework.Constants InfiniteAoi = 0x40000000, Unused13 = 0x80000000, - Disallowed = (FeignDeath | IgnoreReputation | ComprehendLang | + Disallowed = (/*FeignDeath |*/ IgnoreReputation | ComprehendLang | MirrorImage | ForceMovement | DisarmOffhand | DisablePredStats | AllowChangingTalents | DisarmRanged | /* UNIT_FLAG2_REGENERATE_POWER | */ RestrictPartyInteraction | CannotTurn | @@ -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 |