Core/Achievements: Implemented CRITERIA_TYPE_UPGRADE_GARRISON_BUILDING

Port From (https://github.com/TrinityCore/TrinityCore/commit/d1ef8f28b01507286a6f876913c3242d0743ebef)
This commit is contained in:
hondacrx
2021-06-05 19:55:05 -04:00
parent cd07815901
commit 4f3d0c0ac6
3 changed files with 11 additions and 4 deletions
+7 -2
View File
@@ -36,7 +36,10 @@ namespace Framework.Constants
public enum GarrisonFollowerType
{
Garrison = 1,
Shipyard = 2
Shipyard = 2,
ClassOrder = 4,
WarCampaign = 11,
Covenant = 123
}
public enum GarrisonAbilityFlags : ushort
@@ -159,6 +162,8 @@ namespace Framework.Constants
public enum GarrisonType
{
Garrison = 2,
ClassOrder = 3
ClassOrder = 3,
WarCampaign = 9,
Covenant = 111
}
}