diff options
author | Traesh <Traesh@users.noreply.github.com> | 2023-09-07 00:13:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 00:13:47 +0200 |
commit | 0bf5cf33c7dd909202ef492b69e317652e923f96 (patch) | |
tree | b5687455555ec15ac3df8226dc03a0ab70e94e88 /src/server/game/Globals/ObjectMgr.cpp | |
parent | d645b7e9cd3626bc3ce580b3b4888d043123d64b (diff) |
Core/AreaTriggers: Added SpawnDifficulties for spawned areatriggers (#29284)
Diffstat (limited to 'src/server/game/Globals/ObjectMgr.cpp')
-rw-r--r-- | src/server/game/Globals/ObjectMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 9e209b438d7..6e932aeeb8f 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -2095,7 +2095,7 @@ void ObjectMgr::LoadTempSummons() TC_LOG_INFO("server.loading", ">> Loaded {} temp summons in {} ms", count, GetMSTimeDiffToNow(oldMSTime)); } -inline std::vector<Difficulty> ParseSpawnDifficulties(std::string_view difficultyString, std::string_view table, ObjectGuid::LowType spawnId, uint32 mapId, +std::vector<Difficulty> ObjectMgr::ParseSpawnDifficulties(std::string_view difficultyString, std::string_view table, ObjectGuid::LowType spawnId, uint32 mapId, std::set<Difficulty> const& mapDifficulties) { std::vector<Difficulty> difficulties; |