aboutsummaryrefslogtreecommitdiff
path: root/src/bindings/scripts/ScriptMgr.cpp
diff options
context:
space:
mode:
authorChaz Brown <iamparadox@netscape.net>2009-04-24 00:51:09 -0400
committerChaz Brown <iamparadox@netscape.net>2009-04-24 00:51:09 -0400
commitb14bb5b39ace6cd2098b6030945a6ed9b9fca935 (patch)
tree0421a963c7f09ba91343642cc055d0eac0f089f5 /src/bindings/scripts/ScriptMgr.cpp
parent034a9be7236ae881bddb7d6e474c7a22653e50f1 (diff)
Change all SD2: to TSCR:
--HG-- branch : trunk
Diffstat (limited to 'src/bindings/scripts/ScriptMgr.cpp')
-rw-r--r--src/bindings/scripts/ScriptMgr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bindings/scripts/ScriptMgr.cpp b/src/bindings/scripts/ScriptMgr.cpp
index e223fd83bac..dcdcd125c83 100644
--- a/src/bindings/scripts/ScriptMgr.cpp
+++ b/src/bindings/scripts/ScriptMgr.cpp
@@ -859,7 +859,7 @@ void LoadDatabase()
delete result;
}
- outstring_log("SD2: Loading Script Waypoints for %u creature(s)...", uiCreatureCount);
+ outstring_log("TSCR: Loading Script Waypoints for %u creature(s)...", uiCreatureCount);
result = TScriptDB.PQuery("SELECT entry, pointid, location_x, location_y, location_z, waittime FROM script_waypoint ORDER BY pointid");
@@ -885,12 +885,12 @@ void LoadDatabase()
CreatureInfo const* pCInfo = GetCreatureTemplateStore(pTemp.m_uiCreatureEntry);
if (!pCInfo)
{
- error_db_log("SD2: DB table script_waypoint has waypoint for non-existant creature entry %u", pTemp.m_uiCreatureEntry);
+ error_db_log("TSCR: DB table script_waypoint has waypoint for non-existant creature entry %u", pTemp.m_uiCreatureEntry);
continue;
}
if (!pCInfo->ScriptID)
- error_db_log("SD2: DB table script_waypoint has waypoint for creature entry %u, but creature does not have ScriptName defined and then useless.", pTemp.m_uiCreatureEntry);
+ error_db_log("TSCR: DB table script_waypoint has waypoint for creature entry %u, but creature does not have ScriptName defined and then useless.", pTemp.m_uiCreatureEntry);
PointMovementMap[uiCreatureEntry].push_back(pTemp);
++uiNodeCount;