[11854] Comment structure of script storage

This commit is contained in:
Schmoozerd 2011-11-14 01:35:30 +01:00
parent 601805b57e
commit fb64df10bd
2 changed files with 3 additions and 3 deletions

View file

@ -352,8 +352,8 @@ struct ScriptAction
ScriptInfo const* script; // pointer to static script data ScriptInfo const* script; // pointer to static script data
}; };
typedef std::multimap<uint32, ScriptInfo> ScriptMap; typedef std::multimap<uint32 /*delay*/, ScriptInfo> ScriptMap;
typedef std::map<uint32, ScriptMap > ScriptMapMap; typedef std::map<uint32 /*id*/, ScriptMap > ScriptMapMap;
extern ScriptMapMap sQuestEndScripts; extern ScriptMapMap sQuestEndScripts;
extern ScriptMapMap sQuestStartScripts; extern ScriptMapMap sQuestStartScripts;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "11853" #define REVISION_NR "11854"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__