From b84ca5dc20a9bf837c056a1cd40a831ca6836190 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Tue, 24 Jan 2023 23:17:50 -0500 Subject: [PATCH] Core/Units: Named new unit flag Port From (https://github.com/TrinityCore/TrinityCore/commit/2fdd45c99039dd6dda032da4f924dded65ff6d2e) --- 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 b0e079549..a2ed12803 100644 --- a/Source/Framework/Constants/CreatureConst.cs +++ b/Source/Framework/Constants/CreatureConst.cs @@ -153,7 +153,7 @@ namespace Framework.Constants Unk21 = 0x200000, DontFadeOut = 0x400000, Unk23 = 0x800000, - Unk24 = 0x1000000, + ForceHideNameplate = 0x1000000, Unk25 = 0x2000000, Unk26 = 0x4000000, Unk27 = 0x8000000, @@ -168,7 +168,7 @@ namespace Framework.Constants Unk12 | /* FakeDead | */ /* NoFacingOnInteractAndFastFacingChase | */ /* UntargetableFromUi | */ /* NoFacingOnInteractWhileFakeDead | */ AlreadySkinned | /* SuppressAllNpcSounds | */ /* SuppressNpcSounds | */ Unk20 | Unk21 | /* DontFadeOut | */ Unk23 | - Unk24 | Unk25 | Unk26 | Unk27 | + ForceHideNameplate | Unk25 | Unk26 | Unk27 | Unk28 | Unk29 | Unk30 | Unk31), // Skip Allowed = (0xffffffff & ~Disallowed) // Skip }