Changeset 206 for trunk/src/bindings/scripts/ScriptMgr.cpp
- Timestamp:
- 11/19/08 13:46:16 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bindings/scripts/ScriptMgr.cpp
r187 r206 46 46 47 47 // Text Maps 48 HM_NAMESPACE::hash_map<int32, StringTextData> TextMap;48 UNORDERED_MAP<int32, StringTextData> TextMap; 49 49 50 50 … … 56 56 57 57 //Event AI summon structure. Used exclusivly by mob_event_ai.cpp. 58 HM_NAMESPACE::hash_map<uint32, EventAI_Summon> EventAI_Summon_Map;58 UNORDERED_MAP<uint32, EventAI_Summon> EventAI_Summon_Map; 59 59 60 60 //Event AI error prevention structure. Used at runtime to prevent error log spam of same creature id. 61 // HM_NAMESPACE::hash_map<uint32, EventAI_CreatureError> EventAI_CreatureErrorPreventionList;61 //UNORDERED_MAP<uint32, EventAI_CreatureError> EventAI_CreatureErrorPreventionList; 62 62 63 63 uint32 EAI_ErrorLevel; … … 1793 1793 } 1794 1794 1795 HM_NAMESPACE::hash_map<int32, StringTextData>::iterator i = TextMap.find(textEntry);1795 UNORDERED_MAP<int32, StringTextData>::iterator i = TextMap.find(textEntry); 1796 1796 1797 1797 if (i == TextMap.end())