Package org.mctourney.autoreferee.goals.AutoRefGoal

Examples of org.mctourney.autoreferee.goals.AutoRefGoal.ItemStatus


    Set<BlockData> goals = Sets.newHashSet();

    for (AutoRefGoal goal : team.getTeamGoals())
    {
      if (!goal.hasItem()) continue;
      ItemStatus is = goal.getItemStatus();
      if (is == ItemStatus.TARGET || is == ItemStatus.CARRYING) continue;
      goals.add(goal.getItem());
    }
    if (goals.isEmpty()) return null;
View Full Code Here

TOP

Related Classes of org.mctourney.autoreferee.goals.AutoRefGoal.ItemStatus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.