Core/Maps: add new FLAG_ALLIANCE_ONLY and FLAG_HORDE_ONLY for instance spawn groups

Port From (https://github.com/TrinityCore/TrinityCore/commit/203dfec2a1d1d628469ed0d68fefac33c15e65d6)
This commit is contained in:
hondacrx
2022-05-24 13:19:48 -04:00
parent a309a28164
commit 3c8c31ecd7
3 changed files with 15 additions and 1 deletions
+3 -1
View File
@@ -239,8 +239,10 @@ namespace Framework.Constants
{
ActivateSpawn = 0x01,
BlockSpawn = 0x02,
AllianceOnly = 0x04,
HordeOnly = 0x08,
All = (ActivateSpawn | BlockSpawn)
All = ActivateSpawn | BlockSpawn | AllianceOnly | HordeOnly
}
public enum AreaHeaderFlags : ushort