Skip to content

Commit

Permalink
EAI: Fix wrong error message
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Feb 11, 2025
1 parent 33e889f commit c8e4963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/AI/EventAI/CreatureEventAI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,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);
Expand Down

0 comments on commit c8e4963

Please sign in to comment.