//Get the hunting teams history of the opponent. Get the last hunting team of the opponent
//and find out which agent was its opponent at that time. This agent has the latest information
//about our opponent. Therefore this agent is the advisor.
if (opponentID != null)
{
HuntingTeam opponentPreviousTeam = getConn().getAgentById(opponentID).getTeamHistory().getValue(
1);
if (opponentPreviousTeam != null)
{
for (String agent : opponentPreviousTeam.getMembers())
{
if (!agent.equals(opponentID) && !agent.equals(this.getId()))
{
previousAdvisor = agent;
return suggestedFood = seekAvice(agent);