// Check if the _aggroList of the L2GuardInstance is Empty
if(getActiveChar().noTarget())
{
// removeAllKnownObjects();
// Set the L2GuardInstance to AI_INTENTION_IDLE
L2CharacterAI ai = getActiveChar().getAI();
if(ai != null)
{
ai.setIntention(CtrlIntention.AI_INTENTION_IDLE, null);
}
}
return true;
}