diff options
author | megamage <none@none> | 2009-05-18 15:07:14 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-18 15:07:14 -0500 |
commit | bd87c96f4cf9c3f312f63a1815df47e1ad5a1cc8 (patch) | |
tree | 2ba8c6faca439d56d50a0e9dd69864445b21b7f4 /src/game/ObjectMgr.h | |
parent | e8be2f026e59acb2a1629e4300c07cfbc9d2af89 (diff) |
[7844] Fixed mangos string storage index type. Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/game/ObjectMgr.h')
-rw-r--r-- | src/game/ObjectMgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ObjectMgr.h b/src/game/ObjectMgr.h index 33915398c91..136429a41d5 100644 --- a/src/game/ObjectMgr.h +++ b/src/game/ObjectMgr.h @@ -154,7 +154,7 @@ typedef UNORDERED_MAP<uint32,ItemLocale> ItemLocaleMap; typedef UNORDERED_MAP<uint32,QuestLocale> QuestLocaleMap; typedef UNORDERED_MAP<uint32,NpcTextLocale> NpcTextLocaleMap; typedef UNORDERED_MAP<uint32,PageTextLocale> PageTextLocaleMap; -typedef UNORDERED_MAP<uint32,TrinityStringLocale> TrinityStringLocaleMap; +typedef UNORDERED_MAP<int32,TrinityStringLocale> TrinityStringLocaleMap; typedef UNORDERED_MAP<uint32,NpcOptionLocale> NpcOptionLocaleMap; typedef UNORDERED_MAP<uint32,PointOfInterestLocale> PointOfInterestLocaleMap; |