Core/Transmog: Implemented TransmogIllusionFlags::PlayerConditionGrantsOnLogin and fixed transmog illusion validation when transmogging items

Port From (https://github.com/TrinityCore/TrinityCore/commit/f820ff178decf7d844b7c398b79be7269feeb53e)
This commit is contained in:
hondacrx
2022-06-14 23:15:49 -04:00
parent 286294a108
commit c60fa1d1a3
6 changed files with 46 additions and 23 deletions
+7
View File
@@ -2448,4 +2448,11 @@ namespace Framework.Constants
UnitItemOffHandIgnoreDisarmed = 9,
UnitItemRangedIgnoreDisarmed = 10
}
[Flags]
public enum TransmogIllusionFlags
{
HideUntilCollected = 0x1,
PlayerConditionGrantsOnLogin = 0x2,
}
}