diff options
author | megamage <none@none> | 2009-04-19 18:24:40 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-04-19 18:24:40 -0500 |
commit | d159e84325fd5544d7e5155726883aeeb4640d15 (patch) | |
tree | 0aa3bf8834cc667a0951553400d17654bcaa028e /src/game/ObjectMgr.cpp | |
parent | f9befe1d3db1769c9cfeb6898504c95ca58c2316 (diff) |
[7689] Batter EventAI loading checks and fix one from possible crash cases. Author: NoFantasy
--HG--
branch : trunk
Diffstat (limited to 'src/game/ObjectMgr.cpp')
-rw-r--r-- | src/game/ObjectMgr.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index 8cbc8f4b56d..5ddd361abf6 100644 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -3865,6 +3865,16 @@ void ObjectMgr::LoadScripts(ScriptMapMap& scripts, char const* tablename) break; } + case SCRIPT_COMMAND_EMOTE: + { + if(!sEmotesStore.LookupEntry(tmp.datalong)) + { + sLog.outErrorDb("Table `%s` has invalid emote id (datalong = %u) in SCRIPT_COMMAND_EMOTE for script id %u",tablename,tmp.datalong,tmp.id); + continue; + } + break; + } + case SCRIPT_COMMAND_TELEPORT_TO: { if(!sMapStore.LookupEntry(tmp.datalong)) |