aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeston <treeston.mmoc@gmail.com>2018-08-19 19:38:05 +0200
committerShauren <shauren.trinity@gmail.com>2021-10-22 00:41:07 +0200
commit45766c3d6eb4f70dfa6fe58f99d046e280664480 (patch)
tree4e15b65f4d3a55ac6099710e7d1892e1d16b0a5a
parent58000148d321d1f0dde96667974ea912e0a8356e (diff)
DBError follow-ups:
* broadcast_text mismatch (6eb7f06) is now a _INFO since Aok isn't nearly as fast as fixing as he claimed. * SmartAI invoker misuse (482328b and a3c85c8) are now blocking errors (cherry picked from commit 38d3b35561e2634fe633f1c21b1d786b2899e9cb)
-rw-r--r--src/server/game/AI/SmartScripts/SmartScriptMgr.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/server/game/AI/SmartScripts/SmartScriptMgr.cpp b/src/server/game/AI/SmartScripts/SmartScriptMgr.cpp
index eed53952898..500d02ea7df 100644
--- a/src/server/game/AI/SmartScripts/SmartScriptMgr.cpp
+++ b/src/server/game/AI/SmartScripts/SmartScriptMgr.cpp
@@ -569,8 +569,7 @@ bool SmartAIMgr::IsTargetValid(SmartScriptHolder const& e)
if (e.GetScriptType() != SMART_SCRIPT_TYPE_TIMED_ACTIONLIST && e.GetEventType() != SMART_EVENT_LINK && !EventHasInvoker(e.event.type))
{
TC_LOG_ERROR("sql.sql", "SmartAIMgr: Entry " SI64FMTD " SourceType %u Event %u Action %u has invoker target, but event does not provide any invoker!", e.entryOrGuid, e.GetScriptType(), e.GetEventType(), e.GetActionType());
- // allow this to load for now
- // return false;
+ return false;
}
break;
case SMART_TARGET_PLAYER_RANGE:
@@ -1286,8 +1285,7 @@ bool SmartAIMgr::IsEventValid(SmartScriptHolder& e)
if (e.GetScriptType() != SMART_SCRIPT_TYPE_TIMED_ACTIONLIST && e.GetEventType() != SMART_EVENT_LINK && !EventHasInvoker(e.event.type))
{
TC_LOG_ERROR("sql.sql", "SmartAIMgr: Entry " SI64FMTD " SourceType %u Event %u Action %u has invoker cast action, but event does not provide any invoker!", e.entryOrGuid, e.GetScriptType(), e.GetEventType(), e.GetActionType());
- // allow this to load for now
- // return false;
+ return false;
}
// no break
case SMART_ACTION_SELF_CAST: