diff options
author | megamage <none@none> | 2009-03-13 17:34:23 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-13 17:34:23 -0600 |
commit | 5f2edfc7e899d7c6997e679f1b9737fb5e7e8d4d (patch) | |
tree | 5f032f5ef811dbf4795baf9d5250bc2f56c2b5f5 /src/bindings/scripts/ScriptMgr.cpp | |
parent | 7dd699c076b5ff212b819c7b9dcf5707958f9be5 (diff) |
*Fix build.
--HG--
branch : trunk
Diffstat (limited to 'src/bindings/scripts/ScriptMgr.cpp')
-rw-r--r-- | src/bindings/scripts/ScriptMgr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bindings/scripts/ScriptMgr.cpp b/src/bindings/scripts/ScriptMgr.cpp index 311d8fe60bf..728bc435d81 100644 --- a/src/bindings/scripts/ScriptMgr.cpp +++ b/src/bindings/scripts/ScriptMgr.cpp @@ -1074,11 +1074,11 @@ void LoadDatabase() } break; case ACTION_T_SET_FACTION: - if (temp.action[j].param1 !=0 && !GetFactionStore()->LookupEntry(temp.action[j].param1)) + /*if (temp.action[j].param1 !=0 && !GetFactionStore()->LookupEntry(temp.action[j].param1)) { error_db_log("SD2: Event %u Action %u uses non-existant FactionId %u.", i, j+1, temp.action[j].param1); temp.action[j].param1 = 0; - } + }*/ break; case ACTION_T_MORPH_TO_ENTRY_OR_MODEL: if (temp.action[j].param1 !=0 || temp.action[j].param2 !=0) @@ -1089,11 +1089,11 @@ void LoadDatabase() temp.action[j].param1 = 0; } - if (temp.action[j].param2 && !GetCreatureDisplayStore()->LookupEntry(temp.action[j].param2)) + /*if (temp.action[j].param2 && !GetCreatureDisplayStore()->LookupEntry(temp.action[j].param2)) { error_db_log("TSCR: Event %u Action %u uses non-existant ModelId %u.", i, j+1, temp.action[j].param2); temp.action[j].param2 = 0; - } + }*/ } break; case ACTION_T_SOUND: |