Core/Achievements: Implemented GameEvent related criteria types 73 and 93

This commit is contained in:
Shauren
2022-04-24 13:59:51 +02:00
parent 1c62b0b90f
commit 22edf79c70
5 changed files with 17 additions and 2 deletions

View File

@@ -4397,6 +4397,11 @@ bool Map::IsBattlegroundOrArena() const
return i_mapEntry && i_mapEntry->IsBattlegroundOrArena();
}
bool Map::IsScenario() const
{
return i_mapEntry && i_mapEntry->IsScenario();
}
bool Map::IsGarrison() const
{
return i_mapEntry && i_mapEntry->IsGarrison();