diff options
author | ariel- <ariel-@users.noreply.github.com> | 2018-02-14 01:15:00 -0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-06-20 22:25:18 +0200 |
commit | 5b42c0b270f3ff5d76ebcf2c8c97d58348ff1589 (patch) | |
tree | dfc373ace9b49800e2aab3f0035a10992eb10f8e | |
parent | 168be492f5924d306a90e7f8dfd86a6c547da3d7 (diff) |
Core/Spells: Port refactors from 1826437c094966ae339a154844df8587b2122888
(cherry picked from commit 1826437c094966ae339a154844df8587b2122888)
-rw-r--r-- | src/server/game/Spells/SpellMgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellMgr.h b/src/server/game/Spells/SpellMgr.h index d48851af772..174347fdd9e 100644 --- a/src/server/game/Spells/SpellMgr.h +++ b/src/server/game/Spells/SpellMgr.h @@ -357,7 +357,7 @@ struct SpellThreatEntry float apPctMod; // Pct of AP that is added as Threat - default: 0.0f }; -typedef std::map<uint32, SpellThreatEntry> SpellThreatMap; +typedef std::unordered_map<uint32, SpellThreatEntry> SpellThreatMap; // coordinates for spells (accessed using SpellMgr functions) struct SpellTargetPosition |