From b763303b2c51ad4734b549d2781a9ec6f2920f5c Mon Sep 17 00:00:00 2001 From: killerwife Date: Tue, 11 Feb 2025 12:36:14 +0100 Subject: [PATCH] EAI: Fix wrong error message --- src/game/AI/EventAI/CreatureEventAI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/AI/EventAI/CreatureEventAI.cpp b/src/game/AI/EventAI/CreatureEventAI.cpp index 6679252442..7d18922aca 100644 --- a/src/game/AI/EventAI/CreatureEventAI.cpp +++ b/src/game/AI/EventAI/CreatureEventAI.cpp @@ -1143,7 +1143,7 @@ bool CreatureEventAI::ProcessAction(CreatureEventAI_Action const& action, uint32 if (!target) { if (failedTargetSelection) - sLog.outErrorEventAI("Event %d attempt to start relay script but Target == nullptr. Creature %d", eventId, m_creature->GetEntry()); + sLog.outErrorEventAI("Event %d attempt to throw ai event but Target == nullptr. Creature %d", eventId, m_creature->GetEntry()); return false; } SendAIEventAround(AIEventType(action.throwEvent.eventType), target, 0, action.throwEvent.radius);